UNPKG

@carbon/ibm-products

Version:
53 lines (51 loc) 1.89 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"); //#region src/components/InlineTip/InlineTipButton.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}--inline-tip__button`; const componentName = "InlineTipButton"; /** * This is a standard Carbon button, styled specifically for use inside InlineTip. */ const InlineTipButton = react.default.forwardRef(({ children, className, ...rest }, ref) => { return /* @__PURE__ */ react.default.createElement(_carbon_react.Button, { ...rest, className: (0, import_classnames.default)(blockClass, className), ref, ...require_devtools.getDevtoolsProps(componentName), size: "md", kind: "ghost" }, children); }); InlineTipButton.displayName = componentName; InlineTipButton.propTypes = { /** * Provide the contents of the InlineTipButton. */ children: prop_types.default.node.isRequired, /** * Provide an optional class to be applied to the containing node. */ className: prop_types.default.string }; //#endregion exports.InlineTipButton = InlineTipButton;