UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

9 lines (8 loc) 282 B
import type { PasswordInputRootBaseProps } from '@ark-ui/svelte/password-input'; export interface PasswordInputProps extends PasswordInputRootBaseProps { value?: string; label?: string; layout?: 'vertical' | 'horizontal'; placeholder?: string; class?: string; }