import { Mark } from "./Mark.tsx"; export function Rule({ label, node = true, tone = "line", className = "", style, }: { label?: string; node?: boolean; tone?: "line" | "line-bright" | "accent"; className?: string; style?: React.CSSProperties; }) { const line = ( ); return (
{line} {node && } {label && ( {label} )} {label && line}
); }