import React from 'react'; import styled from 'styled-components'; import { gridSize } from '@atlaskit/theme/constants'; const ImageContainer = styled.div` margin: 0 auto ${gridSize() * 3}px; height: 80px; `; const ErrorImage: React.FunctionComponent = () => ( ); export default ErrorImage;