import { PasswordInput as MantinePasswordInput, PasswordInputProps as MantinePasswordInputProps, } from '@mantine/core'; import { CSSProperties, forwardRef } from 'react'; import styles from './password-input.module.css'; export interface PasswordInputProps extends MantinePasswordInputProps { maxWidth?: CSSProperties['maxWidth']; width?: CSSProperties['width']; } export const PasswordInput = forwardRef( ({ children, classNames, maxWidth, style, variant = 'default', width, ...props }, ref) => { return ( {children} ); }, );