@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
17 lines (16 loc) • 436 B
JavaScript
"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";
//#endregion
export { Steps as default };
//# sourceMappingURL=index.mjs.map