import React from 'react'; import { css, keyframes } from '@mongodb-js/compass-components'; const connectingBackgroundSvgStyles = css({ position: 'fixed', zIndex: 500, top: 0, left: 0, bottom: 0, right: 0, }); const opacityFadeInKeyframes = keyframes({ '0%': { opacity: 0, }, '100%': { opacity: 1, }, }); const connectingBackgroundGradientStyles = css({ opacity: 0.9, animation: `${opacityFadeInKeyframes} 500ms ease-out`, }); function ConnectingBackground(): React.ReactElement { return ( ); } export default ConnectingBackground;