@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
15 lines (14 loc) • 437 B
TypeScript
interface IOption {
count: number;
icon: JSX.Element;
key: number;
label: string;
}
export declare type TapRadioGroupProps = {
disabled?: boolean;
onChangeOption: (key: number, option: Partial<IOption>) => void;
options: IOption[];
selectedKey: number;
};
declare const _default: ({ options, disabled, selectedKey, onChangeOption, }: Readonly<TapRadioGroupProps>) => JSX.Element;
export default _default;