UNPKG

@transkripid/flowbite-react

Version:

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

16 lines (15 loc) 636 B
import type { ComponentProps } from 'react'; import type { DeepPartial } from '../../types'; import type { FlowbiteColors } from '../Flowbite'; export interface FlowbiteCheckboxTheme { root: FlowbiteCheckboxRootTheme; } export interface FlowbiteCheckboxRootTheme { base: string; color: FlowbiteColors; } export interface CheckboxProps extends Omit<ComponentProps<'input'>, 'type' | 'ref' | 'color'> { theme?: DeepPartial<FlowbiteCheckboxTheme>; color?: keyof FlowbiteColors; } export declare const Checkbox: import("react").ForwardRefExoticComponent<CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;