@transkripid/flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork
17 lines (16 loc) • 799 B
TypeScript
import type { ComponentPropsWithoutRef } from 'react';
import type { DeepPartial } from '../../types';
import type { FlowbiteFloatingLabelTheme } from './theme';
export type FloatingLabelColor = 'default' | 'success' | 'error';
export type FloatingLabelSizing = 'sm' | 'md';
export type FloatingLabelVariant = 'filled' | 'outlined' | 'standard';
export interface FloatingLabelProps extends ComponentPropsWithoutRef<'input'> {
label: string;
helperText?: string;
color?: FloatingLabelColor;
sizing?: FloatingLabelSizing;
variant: FloatingLabelVariant;
disabled?: boolean;
theme?: DeepPartial<FlowbiteFloatingLabelTheme>;
}
export declare const FloatingLabel: import("react").ForwardRefExoticComponent<FloatingLabelProps & import("react").RefAttributes<HTMLInputElement>>;