UNPKG

@lobehub/ui

Version:

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

17 lines (16 loc) 460 B
"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"; //#endregion export { Tab as default }; //# sourceMappingURL=Tab.mjs.map