UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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