import * as React from 'react'; import styled from '@emotion/styled'; const Outer = styled.div` position: absolute; top: 0; left: 0; display: flex; height: 100%; width: 100%; `; const SpinnerSvg = styled.svg` margin: auto auto; width: 40px; height: 40px; `; const Loader = () => ( ); export default Loader;