From 2a8fa2b0b4405a7289e7983a74de3390dfad8920 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:15:13 +0000 Subject: [PATCH] Seed: product-management template (23 files) --- src/components/ui/separator.tsx | 15 +++++++++++++++ 1 file changed, 15 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..97f2e39 --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,15 @@ +import * as React from "react"; +import { cn } from "@/lib/utils"; + +export const Separator = ({ className, orientation = "horizontal", ...props }: React.HTMLAttributes & { orientation?: "horizontal" | "vertical" }) => ( +
+); + +export default Separator;