---
import type { LismProps } from '../types';
import { Grid } from '../Grid';
import getProps from '../../../dist/components/Columns/getProps';

// Propsの定義
interface Props extends LismProps {}
const props = Astro.props || {};
---

<Grid _grid='columns' {...getProps(props)}><slot /></Grid>
