UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 354 B
import type { HtmlIngredientProps } from '../types.js'; export interface PasswordInputLabelProps extends HtmlIngredientProps<'label', HTMLLabelElement> { } declare const PasswordInputLabel: import("svelte").Component<PasswordInputLabelProps, {}, "ref">; type PasswordInputLabel = ReturnType<typeof PasswordInputLabel>; export default PasswordInputLabel;