@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
9 lines (8 loc) • 369 B
TypeScript
import React from 'react';
import { TextFieldProps } from '../TextField';
/**
* Password Fields let users enter passwords that can be hidden/displayed.
* At its core, it uses [TextField](https://github.com/osstotalsoft/rocket-ui-ts/tree/master/src/components/inputs/TextField).
*/
declare const PasswordField: React.FC<TextFieldProps>;
export default PasswordField;