UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 450 B
import type { InputProps } from '@zag-js/date-picker'; import type { Merge } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; export interface DatePickerInputProps extends Merge<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> { } declare const DatePickerInput: import("svelte").Component<DatePickerInputProps, {}, "ref">; type DatePickerInput = ReturnType<typeof DatePickerInput>; export default DatePickerInput;