satellite-ring
loading-ui/satellite-ringFreeComponent
@loading-ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by @loading-ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://loading-ui.com/r/satellite-ring.jsonSource
1import { cn } from "@/lib/utils";23function SatelliteRing({ className, ...props }: React.ComponentProps<"span">) {4 return (5 <>6 <style>{`7 @keyframes loading-ui-satellite-ring-rotation {8 0% {9 transform: rotate(0deg);10 }1112 100% {13 transform: rotate(360deg);14 }15 }16 `}</style>17 <span18 role="status"19 className={cn(20 "relative inline-block rounded-full border-2 border-current/25",21 className,22 )}23 style={{24 animation:25 "loading-ui-satellite-ring-rotation var(--duration, 1.5s) linear infinite",26 }}27 {...props}28 >29 <span30 aria-hidden="true"31 className="absolute top-0 left-0 rounded-full bg-current"32 style={{33 width: "33.333%",34 height: "33.333%",35 transform: "translate(-50%, 50%)",36 }}37 />38 <span className="sr-only">Loading</span>39 </span>40 </>41 );42}4344export { SatelliteRing };
Files it writes
More from @loading-ui
All 50 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordion-loaderaccordion-loader | @loading-ui | Components | Free | no deps | |
| analyzing-imageanalyzing-image | @loading-ui | Components | Free | 1 dep | |
| arcarc | @loading-ui | Components | Free | no deps | |
| barsbars | @loading-ui | Components | Free | no deps | |
| bobbing-dotsbobbing-dots | @loading-ui | Components | Free | 1 dep | |
| bouncing-dotsbouncing-dots | @loading-ui | Components | Free | no deps | |
| classicclassic | @loading-ui | Components | Free | no deps | |
| clock-ringclock-ring | @loading-ui | Components | Free | no deps |
