You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
466 B
22 lines
466 B
6 years ago
|
import React from 'react'
|
||
|
|
||
|
const SvgSpinner = props => (
|
||
|
<svg
|
||
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||
|
viewBox="0 0 14 14"
|
||
|
width="1em"
|
||
|
height="1em"
|
||
|
{...props}
|
||
|
>
|
||
|
<defs>
|
||
|
<path
|
||
|
id="d"
|
||
|
d="M0 7a.778.778 0 1 1 1.556 0c0 1.464.58 2.835 1.594 3.85a5.444 5.444 0 1 0 1.766-8.881A.778.778 0 1 1 4.32.53 7 7 0 1 1 0 7z"
|
||
|
/>
|
||
|
</defs>
|
||
|
<use fill="currentColor" xlinkHref="#d" />
|
||
|
</svg>
|
||
|
)
|
||
|
|
||
|
export default SvgSpinner
|