import React from 'react'; import styled from '@emotion/styled'; const Img = styled.img` width: 100px; height: 100px; object-fit: contain; padding: 2px; box-sizing: 'border-box'; `; type Props = { url: string; }; export const ScreenshotPreview: React.FC = ({ url }) => { return ; };