import { CheckboxChecked } from "./Icons/CheckboxChecked"; import { CheckboxEmpty } from "./Icons/CheckboxEmpty"; import { Props } from "./Icons/Props"; import React, { forwardRef, type JSX } from "react"; export function Checkbox(props: { checked: boolean; onChange: (e: React.ChangeEvent) => void; children: React.ReactNode; className?: string; small?: boolean; }) { return ( ); } type RadioProps = Omit; export function Radio( props: { onChange: (e: React.ChangeEvent) => void; children: React.ReactNode; radioEmptyClassName?: string; radioCheckedClassName?: string; } & JSX.IntrinsicElements["input"], ) { return ( ); } const RadioEmpty = (props: Props) => { return ( ); }; const RadioChecked = (props: Props) => { return ( ); };