@platformbuilders/fluid-react
Version:
Builders React for Fluid Design System
14 lines (13 loc) • 344 B
TypeScript
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;