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;