"use client" import * as React from "react" import { cn } from "@/lib/utils" interface SeparatorProps extends React.HTMLAttributes { orientation?: "horizontal" | "vertical" decorative?: boolean } function Separator({ className, orientation = "horizontal", decorative = true, ...props }: SeparatorProps) { return (
) } export { Separator }