Update checkboxes

This commit is contained in:
2026-02-11 22:18:32 -05:00
parent ac042d0a4f
commit c4f1ccd869
13 changed files with 92 additions and 84 deletions

View File

@@ -130,12 +130,14 @@ export interface CheckboxProps {
labelClassName?: string;
name?: string;
size?: CheckboxSize;
box?: boolean;
showBox?: boolean;
onChange?: (newChecked: boolean) => void;
checked?: boolean;
defaultChecked?: boolean;
strokeWidth?: number;
value?: string;
disabled?: boolean;
ariaLabel: string;
children?: React.ReactNode;
}