--- /** * TipBox — maps to LaTeX `tipbox` env. * Default use: one-off practical hints, side-shows. * Family: green (tip). */ interface Props { title?: string; } const { title = 'Tip' } = Astro.props; ---