Password input component is a form element that allows the user to enter a password. It provides a way to hide the password while typing.
Design system docsExamplesDefault password input
<dap-ds-password-inputlabel="Password"description="Enter your password"value="password"></dap-ds-password-input>
Sizes
Password input component comes in two sizes: small and large. The default size is sm.
<dap-ds-stackdirection="column"><dap-ds-password-inputlabel="XSmall"description="This is an extra small password input"value="password"size="xs"feedback="This is a feedback message"feedbacktype="negative"></dap-ds-password-input><dap-ds-password-inputlabel="Small"description="This is a small password input"value="password"size="sm"feedback="This is a feedback message"feedbacktype="negative"></dap-ds-password-input><dap-ds-password-inputlabel="Large"description="This is a large password input"value="password"size="lg"feedback="This is a feedback message"feedbacktype="negative"></dap-ds-password-input></dap-ds-stack>