From c491fd65470b5b952865966019e4fc28cf5014bb Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Fri, 20 Mar 2026 15:20:27 +0000 Subject: Using shadcn/ui for this site. --- src/components/ui/separator.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 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..4f65961 --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,23 @@ +import { Separator as SeparatorPrimitive } from "@base-ui/react/separator" + +import { cn } from "@/lib/utils" + +function Separator({ + className, + orientation = "horizontal", + ...props +}: SeparatorPrimitive.Props) { + return ( + + ) +} + +export { Separator } -- cgit