UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

13 lines (12 loc) 488 B
import type { ComponentProps } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteRadioTheme { root: FlowbiteRadioRootTheme; } export interface FlowbiteRadioRootTheme { base: string; } export interface RadioProps extends Omit<ComponentProps<'input'>, 'ref' | 'type'> { theme?: DeepPartial<FlowbiteRadioTheme>; } export declare const Radio: import("react").ForwardRefExoticComponent<RadioProps & import("react").RefAttributes<HTMLInputElement>>;