From c2ad94b04f290b5197a1cc80c98015be9e7b25da Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Sat, 21 Mar 2026 13:47:35 +0000 Subject: feat: add blog post listing and UI components for the blog --- 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..ca11501 --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,26 @@ +import * as React from "react" +import { Separator as SeparatorPrimitive } from "radix-ui" + +import { cn } from "@/lib/utils" + +function Separator({ + className, + orientation = "horizontal", + decorative = true, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +export { Separator } -- cgit