"use client"; import * as React from "react"; import { cn } from "@/lib/utils"; function Separator({ className, orientation = "horizontal", }: React.HTMLAttributes & { orientation?: "horizontal" | "vertical"; }) { return (
); } export { Separator };