UNPKG

@boomerang-io/carbon-addons-boomerang-react

Version:
16 lines (13 loc) 490 B
import React from 'react'; import { InlineNotification } from '@carbon/react'; import { prefix } from '../../internal/settings.js'; /* IBM Confidential 694970X, 69497O0 © Copyright IBM Corp. 2022, 2024 */ function PlatformBanner({ kind, message, title }) { return (React.createElement("div", { className: `${prefix}--bmrg-banner-container` }, React.createElement(InlineNotification, { kind: kind, subtitle: message, title: title }))); } export { PlatformBanner as default };