UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

14 lines (13 loc) 367 B
import { FC } from "react"; import "./CustomRadioGroup.scss"; interface CustomRadioGroupProps { value: any; handleChange: (event: any) => void; fields: { value: any; label: string; }[]; iconType?: "withBackground" | "withoutBackground"; } declare const CustomRadioGroup: FC<CustomRadioGroupProps>; export default CustomRadioGroup;