import type { Color } from "@yaakapp-internal/plugins"; import classNames from "classnames"; import type { ReactNode } from "react"; interface Props { orientation?: "horizontal" | "vertical"; dashed?: boolean; className?: string; children?: ReactNode; color?: Color; } export function Separator({ color, className, dashed, orientation = "horizontal", children, }: Props) { return (
{children && (
{children}
)}
); }