fone-design-system_v2 1.0.320 → 1.0.321

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ export interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputE
24
24
  checked?: boolean;
25
25
  defaultChecked?: boolean;
26
26
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
27
+ sx?: SxProps<Theme>;
27
28
  }
28
29
  declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
29
30
  export default Checkbox;
@@ -22,6 +22,7 @@ export interface RadioGroupProps<T extends FieldValues> extends MuiRadioGroupPro
22
22
  onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
23
23
  radioSize?: string | number;
24
24
  labelSize?: string | number;
25
+ sx?: MuiRadioGroupProps["sx"];
25
26
  }
26
27
  declare const RadioGroup: ({ name, label, row, optionGap, children, options, formName, control, field, value, onChange, radioSize, labelSize, sx, defaultValue, ...props }: RadioGroupProps<FieldValues>) => import("react/jsx-runtime").JSX.Element;
27
28
  export default RadioGroup;