ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 345 B
TypeScript
import * as passwordInput from '@zag-js/password-input';
export interface CreatePasswordInputProps extends Omit<passwordInput.Props, 'dir' | 'getRootNode'> {
}
export interface CreatePasswordInputReturn extends passwordInput.Api {
}
export declare function createPasswordInputContext(props: CreatePasswordInputProps): CreatePasswordInputReturn;