@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
13 lines • 441 B
TypeScript
import React from 'react';
import { ChipProps, InputBaseProps } from '@mui/material';
/**
* Password field is a WME Text Field component with additional props
*/
interface PasswordInputProps extends InputBaseProps {
chipColor?: ChipProps['color'];
chipLabel?: ChipProps['label'];
value: any;
}
declare const PasswordInput: React.FC<PasswordInputProps>;
export default PasswordInput;
//# sourceMappingURL=password-input.d.ts.map