import clsx from 'clsx' import TriangleDownFillIcon from 'web/lib/icons/triangle-down-fill-icon.svg' export function ReplyToggle(props: { seeReplies: boolean numComments: number onSeeReplyClick?: () => void }) { const {seeReplies, numComments, onSeeReplyClick} = props if (numComments === 0) return null return ( ) }