UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

17 lines (16 loc) 630 B
import { JSXOutput, PropsOf, QRL } from '@builder.io/qwik'; import type { InputSize, ValidationStatus } from './input-types'; type InputProps = Omit<PropsOf<'input'>, 'size'> & { label?: string; size?: InputSize; validationStatus?: ValidationStatus; suffix?: JSXOutput; prefix?: JSXOutput; onClickPrefix$?: QRL<() => void>; onClickSuffix$?: QRL<() => void>; validationMessage?: JSXOutput; helper?: JSXOutput; value?: string | ReadonlyArray<string> | number | undefined | null | FormDataEntryValue; }; export declare const Input: import("@builder.io/qwik").Component<InputProps>; export {};