import type { HTMLAttributes } from "react";
import { cn } from "@/lib/utils";
interface SeparatorProps extends HTMLAttributes {
orientation?: "horizontal" | "vertical";
}
export function Separator({
className,
orientation = "horizontal",
...props
}: SeparatorProps) {
return (
);
}