UNPKG

@transkripid/flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork

13 lines (12 loc) 493 B
import type { ComponentProps } from 'react'; import type { DeepPartial } from '../../types'; 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>>;