Update radio button with input suggestions

This commit is contained in:
2026-02-12 20:59:24 -05:00
parent 12ee0bc7ad
commit 1e8e0d3138
4 changed files with 45 additions and 32 deletions

View File

@@ -137,7 +137,6 @@ export interface CheckboxProps {
strokeWidth?: number;
value?: string;
disabled?: boolean;
ariaLabel: string;
children?: React.ReactNode;
}
@@ -149,6 +148,7 @@ export interface RadioButtonProps {
labelClassName?: string;
size?: RadioButtonSize;
value: string;
disabled?: boolean;
children?: React.ReactNode;
}