Skip to content

Commit 8ba9d68

Browse files
Add border-input class to text inputs with prefix/suffix
1 parent 7d5380c commit 8ba9d68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/components/src/ui/text-field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const TextField = React.forwardRef<HTMLDivElement, TextInputProps>(
8585
{...field}
8686
{...props}
8787
ref={field.ref}
88-
className={cn('focus-visible:ring-0 focus-visible:ring-offset-0', {
88+
className={cn('focus-visible:ring-0 focus-visible:ring-offset-0 border-input', {
8989
'rounded-l-none border-l-0': prefix,
9090
'rounded-r-none border-r-0': suffix,
9191
})}

0 commit comments

Comments
 (0)