export const Checkbox: FC<
  ComponentProps<"input"> & { children: ReactNode }
> = ({ children, ...props }) => (
  <label className="checkbox">
    <input type="checkbox" {...props} /> {children}