Home > @uniformdev/design-system > CheckboxWithInforProps
CheckboxWithInforProps type
Signature:
type CheckboxWithInforProps = React.HTMLAttributes<HTMLInputElement> & {
label: string;
name: string;
info?: string;
checked?: boolean;
};