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 | |
| parent | dde7e4f61b6be1758f80993b2486fc0ee58ac4da (diff) | |
| download | invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.tar.gz invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.zip | |
style: use single quotes everywhere
Diffstat (limited to 'src/components/ui')
| -rw-r--r-- | src/components/ui/button.tsx | 6 | ||||
| -rw-r--r-- | src/components/ui/input.tsx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index 32b9aac..29768f6 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -1,13 +1,13 @@ -import { cn } from "@/utils/cn"; +import { cn } from '@/utils/cn'; export const Button = ({ className, ...props -}: React.ComponentPropsWithRef<"button">) => { +}: React.ComponentPropsWithRef<'button'>) => { return ( <button {...props} - className={cn("rounded-sm border px-2", "cursor-pointer", className)} + className={cn('rounded-sm border px-2', 'cursor-pointer', className)} /> ); }; 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)} /> ); }; |
