import * as SeparatorPrimitive from "@radix-ui/react-separator"; import { cls } from "../util"; export function Separator({ orientation, decorative, className }: { orientation: "horizontal" | "vertical", decorative?: boolean, className?: string }) { if (orientation === "horizontal") return ( ); else return ( ); }