From 29d4d624b2056242ef5b119c105db28f950f27c3 Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 14 Jul 2025 18:12:17 +0200 Subject: feat: new shadcn/ui components --- src/components/ui/separator.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/components/ui/separator.tsx (limited to '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..bb3ad74 --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,26 @@ +import * as React from "react" +import * as SeparatorPrimitive from "@radix-ui/react-separator" + +import { cn } from "@/lib/utils" + +function Separator({ + className, + orientation = "horizontal", + decorative = true, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +export { Separator } -- cgit v1.3.1