ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 436 B
TypeScript
import type { InputProps } from '@zag-js/pin-input';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface PinInputInputProps extends Merge<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> {
}
declare const PinInputInput: import("svelte").Component<PinInputInputProps, {}, "ref">;
type PinInputInput = ReturnType<typeof PinInputInput>;
export default PinInputInput;