import type { ReactNode } from "react"; import { Mark } from "./Mark.tsx"; export type SectionTagTone = "muted" | "faint" | "paper" | "accent"; export function SectionTag({ children, tone = "muted", diamond = true, className = "", style, }: { children: ReactNode; tone?: SectionTagTone; diamond?: boolean; className?: string; style?: React.CSSProperties; }) { return (

{diamond && ( )} {children}

); }