mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 11:48:43 +00:00
13 lines
197 B
JavaScript
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;
|