From cc0d0255c035a34c7d8640148296612e880f75da Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Tue, 23 Dec 2025 11:39:28 -0800 Subject: [PATCH] fix: Add missing Separator component --- frontend/components/ui/separator.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 frontend/components/ui/separator.tsx diff --git a/frontend/components/ui/separator.tsx b/frontend/components/ui/separator.tsx new file mode 100644 index 0000000..5b145ab --- /dev/null +++ b/frontend/components/ui/separator.tsx @@ -0,0 +1,28 @@ +"use client" + +import * as React from "react" +import { cn } from "@/lib/utils" + +interface SeparatorProps extends React.HTMLAttributes { + orientation?: "horizontal" | "vertical" + decorative?: boolean +} + +const Separator = React.forwardRef( + ({ className, orientation = "horizontal", decorative = true, ...props }, ref) => ( +
+ ) +) +Separator.displayName = "Separator" + +export { Separator }