aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/ui/separator.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/ui/separator.tsx')
-rw-r--r--apps/web/components/ui/separator.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/web/components/ui/separator.tsx b/apps/web/components/ui/separator.tsx
index 3b9f2b84..09303128 100644
--- a/apps/web/components/ui/separator.tsx
+++ b/apps/web/components/ui/separator.tsx
@@ -1,9 +1,8 @@
"use client";
import * as React from "react";
-import * as SeparatorPrimitive from "@radix-ui/react-separator";
-
import { cn } from "@/lib/utils";
+import * as SeparatorPrimitive from "@radix-ui/react-separator";
const Separator = React.forwardRef<
React.ElementRef<typeof SeparatorPrimitive.Root>,
@@ -18,7 +17,7 @@ const Separator = React.forwardRef<
decorative={decorative}
orientation={orientation}
className={cn(
- "bg-border shrink-0",
+ "shrink-0 bg-border",
orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
className,
)}