Skip to content

Commit

Permalink
chore: reset defaultProps.ts radioDefaultProps type
Browse files Browse the repository at this point in the history
  • Loading branch information
HaixingOoO committed Dec 28, 2024
1 parent 9698c26 commit ae89a42
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/products/tdesign-react/src/radio/defaultProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC
* */

import { TdRadioGroupProps } from './type';
import { TdRadioProps, TdRadioGroupProps } from './type';

export const radioDefaultProps: TdRadioProps = {
allowUncheck: false,
defaultChecked: false,
disabled: undefined,
readonly: undefined,
value: undefined,
};

export const radioGroupDefaultProps: TdRadioGroupProps = {
allowUncheck: false,
Expand Down

0 comments on commit ae89a42

Please sign in to comment.