UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

6 lines (5 loc) 279 B
import { TextFieldProps } from '@mui/material/TextField'; import { default as React } from 'react'; export type PasswordInputProps = Omit<TextFieldProps, "variant" | "type">; declare const PasswordInput: React.FunctionComponent<PasswordInputProps>; export default PasswordInput;