import styled from '@emotion/styled'; import {motion} from 'framer-motion'; import testableTransition from 'sentry/utils/testableTransition'; function WelcomeBackground() { return ( ); } export default WelcomeBackground; const Illustration = styled(motion.svg)` position: absolute; /* Important is needed to override our root SVG rule. * We disable clipping to allow some of the background * to animate outside of the illustration during transitions */ overflow: visible !important; `; const Compass = styled(Illustration)` left: 24px; top: 32px; `; const Log = styled(Illustration)` right: -60px; bottom: 0; `; const Container = styled(motion.div)` pointer-events: none; position: absolute; height: 150%; max-width: 100vw; width: 300%; top: -25%; @media (max-width: ${p => p.theme.breakpoints.small}) { display: none; } `;