UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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