UNPKG

@carbon/ibm-products

Version:
71 lines (69 loc) 2.72 kB
/** * Copyright IBM Corp. 2020, 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ const require_runtime = require("../../_virtual/_rolldown/runtime.js"); const require_index = require("../../node_modules/classnames/index.js"); const require_settings = require("../../settings.js"); const require_devtools = require("../../global/js/utils/devtools.js"); let react = require("react"); react = require_runtime.__toESM(react); let prop_types = require("prop-types"); prop_types = require_runtime.__toESM(prop_types); let _carbon_react = require("@carbon/react"); let _carbon_react_icons = require("@carbon/react/icons"); //#region src/components/Guidebanner/GuidebannerElementButton.tsx /** * Copyright IBM Corp. 2023, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ var import_classnames = /* @__PURE__ */ require_runtime.__toESM(require_index.default); const blockClass = `${require_settings.pkg.prefix}--guidebanner__element-button`; const componentName = "GuidebannerElementButton"; const defaults = { iconDescription: "Crossroads" }; /** * One of two buttons styled specifically for the GuidebannerElement. */ const GuidebannerElementButton = react.default.forwardRef(({ children, className, iconDescription = defaults.iconDescription, type, ...rest }, ref) => { if (type === "primary") return /* @__PURE__ */ react.default.createElement(_carbon_react.Button, { ...rest, className: (0, import_classnames.default)(blockClass, className), iconDescription, kind: "tertiary", ref, renderIcon: () => /* @__PURE__ */ react.default.createElement(_carbon_react_icons.Crossroads, { size: 16 }), role: "button", size: "md", ...require_devtools.getDevtoolsProps(componentName) }, children); return /* @__PURE__ */ react.default.createElement(_carbon_react.Button, { ...rest, className: (0, import_classnames.default)(blockClass, className), kind: "ghost", role: "button", size: "md", ...require_devtools.getDevtoolsProps(componentName) }, children); }); GuidebannerElementButton.displayName = componentName; GuidebannerElementButton.propTypes = { /** * Provide the contents of the GuidebannerElementButton. */ children: prop_types.default.node.isRequired, /** * Provide an optional class to be applied to the containing node. */ className: prop_types.default.string, /** * If type is "primary", then return a tertiary button with the "crossroads" icon, * else return a ghost button. */ type: prop_types.default.string }; //#endregion exports.GuidebannerElementButton = GuidebannerElementButton;