13 lines
197 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const Image = styled.img`
display: block;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
margin: auto;
`;
export default Image;