UNPKG

@yamada-ui/password-input

Version:

Yamada UI password input component

13 lines (10 loc) 386 B
import * as react from 'react'; import { CSSUIObject } from '@yamada-ui/core'; interface PasswordInputContext { styles: { [key: string]: CSSUIObject | undefined; }; } declare const PasswordInputProvider: react.Provider<PasswordInputContext>; declare const usePasswordInputContext: () => PasswordInputContext; export { PasswordInputProvider, usePasswordInputContext };