@vertisanpro/flowbite-react
Version:
Non-Official React components built for Flowbite and Tailwind CSS
14 lines (13 loc) • 500 B
TypeScript
import type { ComponentProps } from 'react';
import React 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: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;