UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

20 lines (17 loc) 473 B
'use client'; import { styles } from "./style.mjs"; import { jsx } from "react/jsx-runtime"; import { cx } from "antd-style"; //#region src/mdx/Steps/index.tsx const Steps = ({ children, className, ...rest }) => { return /* @__PURE__ */ jsx("div", { className: cx(styles.container, className), ...rest, children }); }; Steps.displayName = "MdxSteps"; var Steps_default = Steps; //#endregion export { Steps_default as default }; //# sourceMappingURL=index.mjs.map