1234567891011121314 |
- import styled from 'styled-components';
- export const ToggleButton = styled.div`
- position: fixed;
- right: 20px;
- bottom: 15px;
- z-index: 2;
- box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.32);
- border-radius: 40px;
- width: 80px;
- height: 80px;
- `;
- export default ToggleButton;
|