import styled from 'styled-components'; const ScrollToTopButton = styled.span` padding: 0.8rem 1rem; background: #9500ef; color: #fff; font-size: 1rem; border-radius: 50%; box-shadow: 0 0.3rem 1rem -0.5rem #000; &:hover { background: #8000ce; } `; export { ScrollToTopButton };