import { keyframes } from '@emotion/react' import Image from 'next/image' import { Box, Card, Text } from 'theme-ui' import Icon from './icon' export const unfold = keyframes({ from: { transform: 'scaleY(0)' }, to: { transform: 'scaleY(100%)' } }) const Announcement = ({ caption, copy, iconLeft, iconRight, imgSrc, imgAlt, color = 'accent', textColor = 'secondary', sx = {}, width, ...props }) => ( {iconLeft && ( )} {imgSrc && ( {imgAlt} )} {copy} {caption && ( {' '} {caption} )} {iconRight && } ) export default Announcement