import React from 'react'; import styled from 'styled-components'; import Spinner from '../Spinner'; export const Grid = styled.div<{ height: string }>` height: ${({ height }) => height}; display: flex; justify-content: center; margin: 0 auto; svg { align-self: center; } `; const Loading = ({ height = '100vh' }) => ( ); export default Loading;