radioButton.tsx 374 B

1234567891011
  1. import { RadioGroup } from '../../index';
  2. import getConfigureItem from './getConfigureItem';
  3. import { cssClasses } from '@douyinfe/semi-foundation/aiChatInput/constants';
  4. export default getConfigureItem(RadioGroup, {
  5. className: `${cssClasses.PREFIX}-footer-configure-radio-button`,
  6. valuePath: 'target.value',
  7. defaultProps: {
  8. type: 'button',
  9. }
  10. });