Skip to content

Commit

Permalink
feat(client): increase input sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocroh committed Feb 9, 2025
1 parent e86c4ec commit cf2aa50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/client/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ function Input({ className, icon, ...props }: InputProps) {

return (
<View className="relative">
<View className="absolute flex h-10 w-8 items-center justify-center">
{Icon ? <Icon size={16} color={colors.dark.accentForeground} /> : <></>}
<View className="absolute flex h-full items-center justify-center pl-2">
{Icon ? <Icon size={24} color={colors.dark.accentForeground} /> : <></>}
</View>
<TextInput
className={cn(
'flex h-10 flex-row gap-2 rounded-md border border-input px-3 py-1 pl-8 text-primary focus:border-accent-foreground focus:ring focus:ring-offset-2',
'flex h-14 flex-row gap-2 rounded-md border border-input px-3 py-1 pl-10 text-primary focus:border-accent-foreground focus:ring focus:ring-offset-2',
className
)}
{...props}
Expand Down

0 comments on commit cf2aa50

Please sign in to comment.