diff options
Diffstat (limited to 'src/components/ui/input.tsx')
| -rw-r--r-- | src/components/ui/input.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx index 11bcd12..9966b0b 100644 --- a/src/components/ui/input.tsx +++ b/src/components/ui/input.tsx @@ -1,13 +1,13 @@ -import { cn } from "@/utils/cn"; +import { cn } from '@/utils/cn'; export const Input = ({ className, ...props -}: React.ComponentPropsWithRef<"input">) => { +}: React.ComponentPropsWithRef<'input'>) => { return ( <input {...props} - className={cn("rounded-sm border px-2 py-1", className)} + className={cn('rounded-sm border px-2 py-1', className)} /> ); }; |
