Skip to content

Commit

Permalink
[@mantine/core] PasswordInput: Add innerInput to Styles API
Browse files Browse the repository at this point in the history
  • Loading branch information
rtivital committed Mar 11, 2022
1 parent 043f58c commit d34b759
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const PasswordInput = forwardRef<HTMLInputElement, PasswordInputProps>(
<input
type={reveal ? 'text' : 'password'}
required={required}
className={cx(classes.innerInput, {
className={cx(classes.innerInput, classNames?.innerInput, {
[classes.withIcon]: icon,
[classes.invalid]: !!error,
})}
Expand Down

0 comments on commit d34b759

Please sign in to comment.