import { cn } from "@/lib/utils"; export function Callout({ children, label, tone = "neutral", className, }: { children: React.ReactNode; label?: string; tone?: "neutral" | "accent" | "warm"; className?: string; }) { const toneClass = tone === "accent" ? "border-accent/30 bg-accent/[0.04] text-ink" : tone === "warm" ? "border-honey/40 bg-honey/[0.06] text-ink" : "border-stroke bg-surface text-ink"; return ( ); }