File size: 199 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import styled from 'styled-components';
const Wrapper = styled.footer`
display: flex;
justify-content: space-between;
padding: 3em 0;
border-top: 1px solid #666;
`;
export default Wrapper;
|