import type * as React from 'react' import { cn } from '../../utils' type CheckboxListProps = React.HTMLAttributes & { ref?: React.Ref } const CheckboxList = ({ className, ref, ...props }: CheckboxListProps) => (
) CheckboxList.displayName = 'CheckboxList' export { CheckboxList, type CheckboxListProps }