We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39dfaa2 commit 46deb6aCopy full SHA for 46deb6a
front/src/components/ui/password-input.tsx
@@ -40,7 +40,10 @@ export const PasswordInput = React.forwardRef<
40
defaultVisible,
41
visible: visibleProp,
42
onVisibleChange,
43
- visibilityIcon = { on: <LuEye />, off: <LuEyeOff /> },
+ visibilityIcon = {
44
+ on: <LuEye />,
45
+ off: <LuEyeOff />,
46
+ },
47
...rest
48
} = props;
49
front/src/theme/theme.ts
@@ -22,6 +22,11 @@ const customConfig = defineConfig({
22
color: 'fg.muted',
23
},
24
25
+ input: {
26
+ base: {
27
+ color: 'fg',
28
29
30
31
tokens: {
32
fonts: {
0 commit comments