Skip to content

Commit

Permalink
refactor(Input): remove font weight adjustment for large variant
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jul 18, 2024
1 parent 3d66ee8 commit 148267c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const Input = forwardRef(function Input(
"bg-ui-neutral-50 text-ui-neutral-800 ring-1 ring-inset ring-ui-neutral-600 placeholder:text-ui-neutral-500 aria-invalid:ring-2 aria-invalid:ring-ui-danger-600",
size === "sm" && "px-2.5",
size === "md" && "px-3",
size === "lg" && "px-4 font-medium",
size === "lg" && "px-4",
)}
{...props}
/>
Expand Down

0 comments on commit 148267c

Please sign in to comment.