@olleemilsson/flowbite-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
10 lines (9 loc) • 401 B
TypeScript
import type { ComponentProps } from 'react';
import { DeepPartial } from '..';
export interface FlowbiteRadioTheme {
base: string;
}
export interface RadioProps extends Omit<ComponentProps<'input'>, 'type' | 'ref'> {
theme?: DeepPartial<FlowbiteRadioTheme>;
}
export declare const Radio: import("react").ForwardRefExoticComponent<RadioProps & import("react").RefAttributes<HTMLInputElement>>;