import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import cx from '../classnames' import * as styles from './Banner.css' export interface BannerProps extends BoxProps { variant: 'info' | 'warning' | 'error' | 'success' } export let Banner = forwardRef(function Banner( { variant = 'info', ...props }: BannerProps, ref, ) { return ( ) })