@easykit/design
Version:
Easy kit design components
12 lines (11 loc) • 374 B
TypeScript
import { FC, PropsWithChildren } from 'react';
export interface SimpleRadioGroupOptionProps {
label: string;
value: string;
}
export interface SimpleRadioGroupProps extends PropsWithChildren {
value?: string;
onChange?: (value: string) => void;
options?: SimpleRadioGroupOptionProps[];
}
export declare const SimpleRadioGroup: FC<SimpleRadioGroupProps>;