import clsx from 'clsx' import TriangleDownFillIcon from 'web/lib/icons/triangle-down-fill-icon' import { Row } from '../layout/row' export function ReplyToggle(props: { seeReplies: boolean numComments: number onClick: () => void }) { const { seeReplies, numComments, onClick } = props return ( ) }