Created
February 20, 2019 18:46
-
-
Save alobato/b738fa167675ed787508191b595379a2 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
import React from 'react' | |
const CircularProgress = () => ( | |
<div style={{width: '100%', textAlign: 'center'}}> | |
<svg | |
width='120' | |
height='120' | |
viewBox='0 0 100 100' | |
preserveAspectRatio='xMidYMid' | |
style={{background: 'none'}} | |
> | |
<circle | |
cx='50' | |
cy='50' | |
fill='none' | |
r='20' | |
stroke='hsla(216, 40%, 55%, 1)' | |
strokeWidth='5' | |
/> | |
<circle | |
cx='50' | |
cy='50' | |
fill='none' | |
r='20' | |
stroke='#ffffff' | |
strokeWidth='4' | |
strokeLinecap='square' | |
transform='rotate(146.131 50 50)' | |
> | |
<animateTransform | |
attributeName='transform' | |
type='rotate' | |
calcMode='linear' | |
values='0 50 50;180 50 50;720 50 50' | |
keyTimes='0;0.5;1' | |
dur='2.9s' | |
begin='0s' | |
repeatCount='indefinite' | |
/> | |
<animate | |
attributeName='stroke-dasharray' | |
calcMode='linear' | |
values='12.566370614359172 113.09733552923255;62.83185307179586 62.83185307179586;12.566370614359172 113.09733552923255' | |
keyTimes='0;0.5;1' | |
dur='2.9' | |
begin='0s' | |
repeatCount='indefinite' | |
/> | |
</circle> | |
</svg> | |
</div> | |
) | |
export default CircularProgress |
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
import React from 'react' | |
const CircularProgressMini = () => ( | |
<div style={{display: 'inline-block', lineHeight: 0}}> | |
<svg | |
width='30' | |
height='30' | |
viewBox='0 0 100 100' | |
preserveAspectRatio='xMidYMid' | |
style={{background: 'none'}} | |
> | |
<circle | |
cx='50' | |
cy='50' | |
fill='none' | |
r='40' | |
stroke='hsla(216, 40%, 55%, 1)' | |
strokeWidth='9' | |
/> | |
<circle | |
cx='50' | |
cy='50' | |
fill='none' | |
r='40' | |
stroke='#ffffff' | |
strokeWidth='7' | |
strokeLinecap='square' | |
transform='rotate(146.131 50 50)' | |
> | |
<animateTransform | |
attributeName='transform' | |
type='rotate' | |
calcMode='linear' | |
values='0 50 50;180 50 50;720 50 50' | |
keyTimes='0;0.5;1' | |
dur='2.9s' | |
begin='0s' | |
repeatCount='indefinite' | |
/> | |
<animate | |
attributeName='stroke-dasharray' | |
calcMode='linear' | |
values='12.566370614359172 113.09733552923255;62.83185307179586 62.83185307179586;12.566370614359172 113.09733552923255' | |
keyTimes='0;0.5;1' | |
dur='2.9' | |
begin='0s' | |
repeatCount='indefinite' | |
/> | |
</circle> | |
</svg> | |
</div> | |
) | |
export default CircularProgressMini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment