blob: 69fd55c54924beb621475bcc7ca1e225d553f467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import styled from 'styled-components';
const CloseButton = styled.button`
background: black;
color: white;
font-size: 3rem;
border: 0;
position: absolute;
z-index: 2;
right: 0;
`;
export default CloseButton;
|