File size: 234 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import styled from 'styled-components';
const Wrapper = styled.div`
padding: 0;
margin: 0;
width: 100%;
background-color: white;
border: 1px solid #ccc;
border-radius: 3px;
overflow: hidden;
`;
export default Wrapper;
|