UNPKG

@keen.io/ui-core

Version:

Keen visual components library

10 lines (9 loc) 257 B
import { FC } from 'react'; import { RadioItem } from '../../types'; declare type Props = { items: RadioItem[]; onClick: (item: RadioItem) => void; activeItem?: string; }; declare const RadioGroup: FC<Props>; export default RadioGroup;