mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-25 16:39:02 +02:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const Img = styled.img`
|
|
max-width: 100%;
|
|
margin: 25px auto;
|
|
display: block;
|
|
`;
|