Skip to content

Commit 43048d0

Browse files
committed
fix(input): use consistent border-border-primary class
- Change Input component default variant from border-primary to border-border-primary - Ensures consistent border styling between Input and Textarea components - Aligns with design system token usage
1 parent 2deff05 commit 43048d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/atoms/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Input = forwardRef<HTMLInputElement, InputProps>(
3535
// Fixed variant classes to match test expectations
3636
const variantClasses = {
3737
default:
38-
'border-primary bg-surface-primary text-text-primary placeholder-text-secondary focus:border-primary-500 focus:ring-primary-500',
38+
'border-border-primary bg-surface-primary text-text-primary placeholder-text-secondary focus:border-primary-500 focus:ring-primary-500',
3939
error:
4040
'border-danger-500 bg-surface-primary text-text-primary placeholder-text-secondary focus:border-danger-500 focus:ring-danger-500',
4141
success:

0 commit comments

Comments
 (0)