A password input that lets you reveal the password.
yarn add @axiscommunications/fluent-password-input
npm install @axiscommunications/fluent-password-input
import { PasswordInput } from "@axiscommunications/fluent-password-input";
export const Root: React.FC = () => {
return (
<FluentProvider>
<PasswordInput
name="password"
onChange={(_e, data) => setValue(data.value)}
/>
</FluentProvider>
);
};