From db54364ea044c8ac122df1e3797e135e17c256b3 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:14:47 +0000 Subject: [PATCH] Seed: project-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;