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