import { Wrapper } from './styles'; import Text from '../Text'; import { Check } from '../../assets'; export type CheckBoxProps = { className?: string; color?: 'primary' | 'secondary' | 'tertiary'; label: string; checked: boolean; onClick: () => void; }; const CheckBox = ({ label, checked, onClick, ...props }: CheckBoxProps) => { return (
{label}
); }; export default CheckBox;