UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 336 B
import type { HtmlIngredientProps } from '../types.js'; export interface TimePickerInputProps extends HtmlIngredientProps<'input', HTMLInputElement> { } declare const TimePickerInput: import("svelte").Component<TimePickerInputProps, {}, "ref">; type TimePickerInput = ReturnType<typeof TimePickerInput>; export default TimePickerInput;