(owner, args)
| 8 | |
| 9 | export default class CircularProgress extends Component { |
| 10 | constructor(owner, args) { |
| 11 | super(owner, args); |
| 12 | |
| 13 | const rgb = COLORS[args.color]; |
| 14 | this.style = htmlSafe(`fill: rgba(${rgb}, .5)`); |
| 15 | } |
| 16 | |
| 17 | get path() { |
| 18 | const π = Math.PI; |
nothing calls this directly
no outgoing calls
no test coverage detected