8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
export const Img = styled.img`
|
||
|
max-width: 100%;
|
||
|
margin: 25px auto;
|
||
|
display: block;
|
||
|
`;
|