UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 405 B
import type { InputProps } from '@zag-js/pin-input'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface PinInputInputProps extends Assign<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> { } declare const PinInputInput: import("svelte").Component<PinInputInputProps, {}, "ref">; type PinInputInput = ReturnType<typeof PinInputInput>; export default PinInputInput;