Created
January 10, 2018 10:22
-
-
Save xavxyz/34aec853ec8b672be576f59ac2041e85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const LoadingSpinner = () => { | |
return ( | |
<svg viewBox="0 0 120 120"> | |
<circle r={42} cx={60} cy={60} fill="transparent" stroke="#133C99" strokeWidth={6} strokeDasharray="2 9.5" /> | |
<linearGradient id="arc-gradient"> | |
<stop offset="0%" stopOpacity="0" /> | |
<stop offset="49.99%" stopOpacity="0" /> | |
<stop offset="50%" stopColor="#133C99" /> | |
<stop offset="100%" stopColor="#133C99" /> | |
</linearGradient> | |
<circle r={36} cx={60} cy={60} fill="transparent" stroke="url(#arc-gradient)" strokeWidth={2} /> | |
</svg> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment