--- /** * WarnBox — maps to LaTeX `warnbox` env. * Default use: caveats, failure modes, pitfalls. * Family: rose (warn). */ interface Props { title?: string; } const { title = 'Warning' } = Astro.props; ---