File size: 170 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 | import styled from 'styled-components';
const Wrapper = styled.div`
margin: 2em auto;
width: 40px;
height: 40px;
position: relative;
`;
export default Wrapper;
|
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 | import styled from 'styled-components';
const Wrapper = styled.div`
margin: 2em auto;
width: 40px;
height: 40px;
position: relative;
`;
export default Wrapper;
|