import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
import { BannerAlert } from './banner-alert';
import { BannerBase } from '..';
# BannerAlert
`BannerAlert` is an inline notification that notifies users of important information & sometimes time-sensitive changes.
## Props
The `BannerAlert` accepts all props below as well as all [Box](/docs/components-ui-box--default-story#props) component props
The `BannerAlert` accepts all `BannerBase` component props below
### Severity
Use the `severity` prop and the `SEVERITIES` object from `./ui/helpers/constants/design-system.js` to change the context of `BannerAlert`.
Optional: `BANNER_ALERT_SEVERITIES` from `./banner` object can be used instead of `SEVERITIES`.
Possible options:
- `SEVERITIES.INFO` Default
- `SEVERITIES.WARNING`
- `SEVERITIES.DANGER`
- `SEVERITIES.SUCCESS`
```jsx
import { BannerAlert } from '../../component-library';
import { SEVERITIES } from '../../../helpers/constants/design-system';
This is a demo of severity Info.
This is a demo of severity Warning.
This is a demo of severity Danger.
This is a demo of severity Success.
```
### Title
Use the `title` prop to pass a string that is sentence case no period. Use the `titleProps` prop to pass additional props to the `Text` component.
```jsx
import { BannerAlert } from '../../component-library';
Pass only a string through the title prop
;
```
### Description
The `description` is the content area of the `BannerAlert` that must be a string. Description shouldn't repeat title and only 1-3 lines.
If content requires more than a string, see `children` prop below.
```jsx
import { BannerAlert } from '../../component-library';
;
```
### Children
The `children` prop is an alternative to `description` for `BannerAlert` when more than a string is needed. Children content shouldn't repeat title and only 1-3 lines.
```jsx
import { Size } from '../../../helpers/constants/design-system';
import { BannerAlert } from '../../component-library';
{`Description shouldn't repeat title. 1-3 lines. Can contain a `}
hyperlink.
;
```
### Action Button Label, onClick, & Props
Use the `actionButtonLabel` prop to pass text, `actionButtonOnClick` prop to pass an onClick handler, and `actionButtonProps` prop to pass an object of [ButtonLink props](/docs/components-componentlibrary-buttonlink--default-story) for the action
```jsx
import { BannerAlert, IconName } from '../../component-library';
console.log('ButtonLink actionButtonOnClick demo')}
>
Use actionButtonLabel for action text, actionButtonOnClick for the onClick
handler, and actionButtonProps to pass any ButtonLink prop types such as
iconName
;
```
### On Close
Use the `onClose` prop to pass a function to the close button. The close button will appear when this prop is used.
Additional props can be passed to the close button with `closeButtonProps`
```jsx
import { BannerAlert } from '../../component-library';
console.log('close button clicked')}
>
Click the close button icon to hide this notifcation
;
```