import {cn} from '@/lib/utils.ts' import {forwardRef, HTMLAttributes, PropsWithChildren} from 'react' type Props = PropsWithChildren & { selected?: boolean }> const TermBox = forwardRef((props: Props, ref) => { const {children, className, selected, ...rest} = props return (
{children}
) }) TermBox.displayName = 'TermBox' export default TermBox export type { Props, }