thaw 0.4.8

An easy to use leptos component library
Documentation
.thaw-progress-circle {
    width: var(--thaw-size);
    height: var(--thaw-size);
    display: inline-block;
    position: relative;
}

.thaw-progress-circle__fill {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dasharray 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thaw-progress-circle__fill--empty {
    opacity: 0;
}

.thaw-progress-circle__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thaw-progress-circle__content--text {
    font-size: 28px;
}