// @flow strict import * as React from 'react'; import {ALERT_SEMANTIC} from '../../types/common'; import classify from '../../utils/classify'; import type {InContextAlertProps} from '../InContextAlert'; import {InContextAlert} from '../InContextAlert'; import css from './Banner.module.css'; export type BannerProps = { ...InContextAlertProps, alignment?: 'top' | 'bottom', }; export const Banner: React$AbstractComponent = React.forwardRef( ( { classNames, semantic, leftIconType = 'solid', alignment = 'top', ...props }: BannerProps, ref, ): React.Node => ( <> ), );