2025-03-26 10:01:46 +07:00

14 lines
334 B
SCSS
Vendored

@mixin circle-progress-varient ($parent, $color) {
#{$parent} {
svg {
.circle-progress-value {
stroke: $color;
stroke-linecap: round;
}
.circle-progress-text {
fill: $color;
font-size: 16px;
}
}
}
}