Created
April 15, 2022 20:28
-
-
Save AvocadoVenom/fb89a1fde7526fe7684dca4af17efe85 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 styled from 'styled-components' | |
| const CircleProgressBar = styled.div({ | |
| background: ({ progress }) => { | |
| // Adapt the logic here | |
| const angle = 360 * progress | |
| return `radial-gradient(white 50%, transparent 51%), | |
| conic-gradient(transparent 0deg ${angle}deg, gainsboro ${angle}deg 360deg), | |
| conic-gradient(orange 0deg, yellow 90deg, lightgreen 180deg, green)` | |
| }, | |
| borderRadius: '50%', | |
| width: '120px', | |
| height: '120px' | |
| }) | |
| export default CircleProgressBar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment