Virginie Ky cd103ba332 Card component with card img wrapper UI
Signed-off-by: Virginie Ky <virginie.ky@gmail.com>
2020-03-02 00:21:43 +01:00

13 lines
197 B
JavaScript

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;