UNPKG

@platformbuilders/fluid-react

Version:
14 lines (13 loc) 344 B
import { CSSProperties, ChangeEvent, FC } from 'react'; export type Props = { id: string; value: string; label: string; group: string; onChange: (event: ChangeEvent<HTMLInputElement>) => void; disabled?: boolean; style?: CSSProperties; checked?: boolean; }; declare const Radio: FC<Props>; export default Radio;