@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
20 lines (17 loc) • 493 B
JavaScript
'use client';
import { styles } from "./style.mjs";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/mdx/Tabs/Tab.tsx
const Tab = ({ children, className, ...rest }) => {
return /* @__PURE__ */ jsx("div", {
className: cx(styles.body, className),
...rest,
children: /* @__PURE__ */ jsx("div", { children })
});
};
Tab.displayName = "MdxTab";
var Tab_default = Tab;
//#endregion
export { Tab_default as default };
//# sourceMappingURL=Tab.mjs.map