import * as LabelPrimitive from '@radix-ui/react-label' import type { ReactNode } from 'react' import type React from 'react' import { cn } from '../../utils' import { typographyVariants } from '../Typography' import { Checkbox } from './Checkbox' type LabeledCheckboxProps = React.ComponentPropsWithoutRef & { children: ReactNode className?: string } const LabeledCheckbox = ({ children, className, ...checkboxProps }: LabeledCheckboxProps) => { return ( {children} ) } LabeledCheckbox.displayName = 'LabeledCheckbox' export { LabeledCheckbox }