UNPKG

@useloops/design-system

Version:

The official React based Loops design system

19 lines (16 loc) 498 B
import { FunctionComponent } from 'react'; interface RadioProps { sizing?: 'default' | 'lg'; disabled?: boolean; name?: string; value?: unknown; autoFocus?: boolean; onChange?: ((event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void) | undefined; checked?: boolean; readOnly?: boolean; required?: boolean; 'aria-label'?: string; } declare const Radio: FunctionComponent<RadioProps>; export { Radio as default }; export type { RadioProps };