diff options
Diffstat (limited to 'src/components/ui/button.tsx')
| -rw-r--r-- | src/components/ui/button.tsx | 6 |
1 files changed, 3 insertions, 3 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)} /> ); }; |
