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