UNPKG

@zag-js/password-input

Version:

Core logic for the password-input widget implemented as a state machine

9 lines (6 loc) 352 B
import { PasswordInputProps } from './password-input.types.mjs'; import '@zag-js/core'; import '@zag-js/types'; declare const props: (keyof PasswordInputProps)[]; declare const splitProps: <Props extends Partial<PasswordInputProps>>(props: Props) => [Partial<PasswordInputProps>, Omit<Props, keyof PasswordInputProps>]; export { props, splitProps };