Skip to content

Instantly share code, notes, and snippets.

@xavxyz
Created January 10, 2018 10:22
Show Gist options
  • Save xavxyz/34aec853ec8b672be576f59ac2041e85 to your computer and use it in GitHub Desktop.
Save xavxyz/34aec853ec8b672be576f59ac2041e85 to your computer and use it in GitHub Desktop.
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