hoda-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"> <
18 lines (17 loc) • 569 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { FlowbiteStateColors } from '../Flowbite/FlowbiteTheme';
export interface FlowbiteLabelTheme {
base: string;
colors: LabelColors;
disabled: string;
}
export interface LabelColors extends FlowbiteStateColors {
[key: string]: string;
default: string;
}
export interface LabelProps extends PropsWithChildren<Omit<ComponentProps<'label'>, 'color'>> {
color?: keyof LabelColors;
value?: string;
disabled?: boolean;
}
export declare const Label: FC<LabelProps>;