import React from 'react' import styled from 'styled-components' export const SpinnerIcon = () => ( ) const Svg = styled.svg` animation: 1s linear infinite svg-animation; @keyframes svg-animation { 0% { transform: rotateZ(0deg); } 100% { transform: rotateZ(360deg); } } ` const Circle = styled.circle` fill: transparent; stroke: currentColor; stroke-linecap: round; stroke-dasharray: 280; stroke-dashoffset: 100; stroke-width: 8px; `