UNPKG

@lobehub/ui

Version:

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

30 lines (27 loc) 825 B
'use client'; import Button_default from "../../Button/Button.mjs"; import { styles } from "./style.mjs"; import { memo } from "react"; import { jsx } from "react/jsx-runtime"; import { cx } from "antd-style"; //#region src/awesome/BottomGradientButton/BottomGradientButton.tsx const BottomGradientButton = memo(({ className, children, style, ref, ...rest }) => { return /* @__PURE__ */ jsx(Button_default, { className: cx(styles, className), ref, shape: "round", style: { paddingInline: 16, width: "unset", ...style }, variant: "filled", ...rest, children }); }); BottomGradientButton.displayName = "BottomGradientButton"; var BottomGradientButton_default = BottomGradientButton; //#endregion export { BottomGradientButton_default as default }; //# sourceMappingURL=BottomGradientButton.mjs.map