ui-ingredients
Version:
Headless component library for Svelte powered by zag
8 lines (7 loc) • 419 B
TypeScript
import type { InputProps } from '@zag-js/date-picker';
import type { Assign, HtmlIngredientProps } from '../types.js';
export interface DatePickerInputProps extends Assign<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> {
}
declare const DatePickerInput: import("svelte").Component<DatePickerInputProps, {}, "ref">;
type DatePickerInput = ReturnType<typeof DatePickerInput>;
export default DatePickerInput;