@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
23 lines (20 loc) • 582 B
JavaScript
'use client';
import Grid_default from "../../Grid/Grid.mjs";
import { styles } from "./style.mjs";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/mdx/Cards/index.tsx
const Cards = ({ children, className, maxItemWidth = 250, rows = 3, ...rest }) => {
return /* @__PURE__ */ jsx(Grid_default, {
className: cx(styles.container, className),
maxItemWidth,
rows,
...rest,
children
});
};
Cards.displayName = "MdxCards";
var Cards_default = Cards;
//#endregion
export { Cards_default as default };
//# sourceMappingURL=index.mjs.map