PasswordInput

The Password Input component is a specialized input field designed for securely capturing user passwords. It masks the entered text to protect sensitive information from being seen by onlookers. This component often includes additional features such as visibility toggles, strength indicators, and validation rules to enhance security and usability.

import { PasswordInput } from 'welcome-ui/PasswordInput'
const Example = () => {
return <PasswordInput name="password" placeholder="Enter your password" />
}
export default Example