From 771d00409168f3918a1bef3e1448e2e0a9887a91 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:15:03 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/separator.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/components/ui/separator.tsx diff --git a/src/components/ui/separator.tsx b/src/components/ui/separator.tsx new file mode 100644 index 0000000..5f5966c --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,24 @@ +import * as React from "react"; +import * as SeparatorPrimitive from "@radix-ui/react-separator"; + +import { cn } from "@/lib/utils"; + +const Separator = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => ( + +)); +Separator.displayName = SeparatorPrimitive.Root.displayName; + +export { Separator };