UNPKG

react-lightning-design-system

Version:

Salesforce Lightning Design System components built with React

16 lines (15 loc) 357 B
import { FC, InputHTMLAttributes, Ref } from 'react'; import { RadioValueType } from './RadioGroup'; /** * */ export type RadioProps = { label?: string; name?: string; value?: RadioValueType; inputRef?: Ref<HTMLInputElement>; } & Omit<InputHTMLAttributes<HTMLInputElement>, 'value'>; /** * */ export declare const Radio: FC<RadioProps>;