UNPKG

@web3mq/react-components

Version:
14 lines (13 loc) 343 B
import React from 'react'; export declare type IValueType = { id: string; name: string; }; declare type IProps = { className?: string; style?: React.CSSProperties; value: IValueType[]; onChange: (data: IValueType) => void; }; export declare const RadioGroup: React.NamedExoticComponent<IProps>; export {};