mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-02-03 03:10:50 +08:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
export function LoadingSpinner({ size = 20 }: { size?: number }) {
|
|
return (
|
|
<div
|
|
className="loading-spinner"
|
|
style={{ width: size, height: size, borderWidth: size / 7 }}
|
|
role="status"
|
|
aria-live="polite"
|
|
/>
|
|
);
|
|
}
|