@arolariu/components
Version:
🎨 70+ beautiful, accessible React components built on Base UI. TypeScript-first, CSS Modules styling, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
26 lines (21 loc) • 343 B
CSS
.spinner {
width: 1rem;
height: 1rem;
color: var(--ac-foreground);
animation: spin 0.8s linear infinite;
transform-origin: center;
}
.track {
opacity: 0.2;
}
.indicator {
stroke-linecap: round;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}