ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 354 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface PasswordInputInputProps extends HtmlIngredientProps<'input', HTMLInputElement> {
}
declare const PasswordInputInput: import("svelte").Component<PasswordInputInputProps, {}, "ref">;
type PasswordInputInput = ReturnType<typeof PasswordInputInput>;
export default PasswordInputInput;