UNPKG

cookie12-test-ui

Version:

React component library

16 lines (15 loc) 419 B
import React from 'react'; import './RadioButton.scss'; interface RadioButtonProps { changed: (e: string) => void; value: string; isSelected?: boolean; label: string; name: string; } interface RadioButtonGroupProps { legend: string; } export declare const RadioButton: React.FC<RadioButtonProps>; export declare const RadioButtonGroup: React.FC<RadioButtonGroupProps>; export {};