Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 565 Bytes

File metadata and controls

30 lines (23 loc) · 565 Bytes

Password Input - @axiscommunications/fluent-password-input

A password input that lets you reveal the password.

How to install

yarn add @axiscommunications/fluent-password-input
npm install @axiscommunications/fluent-password-input

Usage

import { PasswordInput } from "@axiscommunications/fluent-password-input";

export const Root: React.FC = () => {
  return (
    <FluentProvider>
      <PasswordInput
        name="password"
        onChange={(_e, data) => setValue(data.value)}
      />
    </FluentProvider>
  );
};