Skip to content

Instantly share code, notes, and snippets.

@florinpop17
Created May 15, 2019 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florinpop17/03df83eee69f4f43ee3aa5e317e1833b to your computer and use it in GitHub Desktop.
Save florinpop17/03df83eee69f4f43ee3aa5e317e1833b to your computer and use it in GitHub Desktop.
Countdown React - SVGCircle
const SVGCircle = ({ radius }) => (
<svg className="countdown-svg">
<path
fill="none"
stroke="#333"
stroke-width="4"
d={describeArc(50, 50, 48, 0, radius)}
/>
</svg>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment