thp-lang.org/src/components/TwoColumn.astro
2024-09-28 07:21:56 -05:00

9 lines
154 B
Plaintext

---
const {cols} = Astro.props;
const grid_cols = cols ?? "grid-cols-[10rem_auto]";
---
<div class={`two-column grid ${grid_cols}`}>
<slot />
</div>