diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-05-24 18:28:59 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-05-24 18:28:59 +0200 |
| commit | a6445297dfa7bc8d341ebcf72368d410bae20605 (patch) | |
| tree | ad1e129e517c766fb9837dd0892ea5d63ccead2d /src/components/ui/input.tsx | |
| parent | dde7e4f61b6be1758f80993b2486fc0ee58ac4da (diff) | |
| download | invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.tar.gz invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.zip | |
style: use single quotes everywhere
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)} /> ); }; |
