UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

10 lines (9 loc) 281 B
import { FC } from 'react'; import { RadioValue } from '.'; export interface RadioGroupProps { value?: RadioValue | null; onChange?: (val: RadioValue) => void; defaultValue?: RadioValue | null; disabled?: boolean; } export declare const Group: FC<RadioGroupProps>;