UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

8 lines (7 loc) 316 B
import { JSXOutput, PropsOf } from '@builder.io/qwik'; export type TimePickerProps = PropsOf<'input'> & { label?: string; suffix?: JSXOutput; onTimeChange$?: (timeAsString: string, timeAsChunk: string[]) => void; }; export declare const TimePicker: import("@builder.io/qwik").Component<TimePickerProps>;