@heroui/radio
Version:
Radios allow users to select a single option from a list of mutually exclusive options.
12 lines (9 loc) • 361 B
text/typescript
import * as _heroui_system from '@heroui/system';
import { UseRadioProps } from './use-radio.mjs';
import '@react-types/radio';
import '@heroui/theme';
import 'react';
interface RadioProps extends UseRadioProps {
}
declare const Radio: _heroui_system.InternalForwardRefRenderFunction<"input", RadioProps, never>;
export { type RadioProps, Radio as default };