--- import { clsx } from "clsx"; interface Props { level: number; icon?: string; heading?: string; xstyle?: string; } // level 0: info/note // level 1: warning // level 2: attn needed: oh fuck const { level, icon, heading, xstyle } = Astro.props; ---