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

// Propsの定義
interface Props extends LismProps {}

let { layout, ...props } = Astro.props;
const LismComponent = layout || Lism;
---

<LismComponent {...getGridItemProps(props)}>
	<slot />
</LismComponent>
