import { InputHTMLAttributes } from 'react'
import {
Wrapper,
Input,
Label,
} from './styled'
type Props = Pick, (
| 'checked'
| 'id'
| 'name'
| 'onClick'
)> & {
label?: string,
}
export const Checkbox = ({
checked,
id,
label,
name,
onClick,
}: Props) => (
)