update usage (icons + size-)

This commit is contained in:
Maze Winther
2026-01-23 21:25:51 +01:00
parent c6deceaa89
commit cd0a8d020e
58 changed files with 209 additions and 200 deletions
+2 -2
View File
@@ -101,9 +101,9 @@ const Input = forwardRef<HTMLInputElement, InputProps>(
aria-label={showPassword ? "Hide password" : "Show password"}
>
{showPassword ? (
<Eye className="h-4 w-4" />
<Eye className="size-4" />
) : (
<EyeOff className="h-4 w-4" />
<EyeOff className="size-4" />
)}
</Button>
)}