@vchatcloud/react-ui-kit
Version:
VChatCloud UI Kit for react integration
11 lines (10 loc) • 370 B
TypeScript
interface RadioGroupProps {
readonly options: {
label?: string;
value: string | undefined;
}[];
readonly value: string | undefined;
readonly onChange: (newValue: string | undefined) => void;
}
declare const RadioGroup: ({ options, value, onChange }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
export default RadioGroup;