Skip to content

Instantly share code, notes, and snippets.

@AvocadoVenom
Created April 15, 2022 20:28
Show Gist options
  • Select an option

  • Save AvocadoVenom/fb89a1fde7526fe7684dca4af17efe85 to your computer and use it in GitHub Desktop.

Select an option

Save AvocadoVenom/fb89a1fde7526fe7684dca4af17efe85 to your computer and use it in GitHub Desktop.
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