import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import { BackgroundColor, BorderRadius, Display, Size, TextVariant, } from '../../../helpers/constants/design-system'; import Box from '../../ui/box'; import { ButtonLink, IconName, ButtonIcon, Text } from '..'; export const BannerBase = ({ className, title, titleProps, description, descriptionProps, children, actionButtonLabel, actionButtonOnClick, actionButtonProps, startAccessory, onClose, closeButtonProps, ...props }) => { return ( {startAccessory && <>{startAccessory}}
{title && ( {title} )} {description && {description}} {children && typeof children === 'object' ? ( children ) : ( {children} )} {actionButtonLabel && ( {actionButtonLabel} )}
{onClose && ( )}
); }; BannerBase.propTypes = { /** * The title of the BannerBase */ title: PropTypes.string, /** * Additional props to pass to the `Text` component used for the `title` text */ titleProps: PropTypes.object, /** * The description is the content area below BannerBase title */ description: PropTypes.string, /** * Additional props to pass to the `Text` component used for the `description` text */ descriptionProps: PropTypes.object, /** * The children is an alternative to using the description prop for BannerBase content below the title */ children: PropTypes.node, /** * Label for action button (ButtonLink) of the BannerBase below the children */ actionButtonLabel: PropTypes.string, /** * Props for action button (ButtonLink) of the BannerBase below the children */ actionButtonProps: PropTypes.object, /** * The onClick handler for the action button (ButtonLink) */ actionButtonOnClick: PropTypes.func, /** * The start(defualt left) content area of BannerBase */ startAccessory: PropTypes.node, /** * The onClick handler for the close button * When passed this will allow for the close button to show */ onClose: PropTypes.func, /** * The props to pass to the close button */ closeButtonProps: PropTypes.object, /** * An additional className to apply to the BannerBase */ className: PropTypes.string, /** * BannerBase accepts all the props from Box */ ...Box.propTypes, };