import styled from 'styled-components/macro' import { keyframes } from 'styled-components' const rotate = keyframes` from { transform: rotate(360deg); } to { transform: rotate(0deg); } ` const Svg = styled.svg` width: 36px; height: 34px; animation: ${rotate} 1s linear infinite; ` type ArrowsProps = { className?: string, } export const Arrows = ({ className }: ArrowsProps) => ( )