Spaces:
Running
Running
File size: 351 Bytes
2e9c97f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/**
* @license
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
export default function LoadingSpinner() {
return (
<div className="loading-spinner-overlay" role="status" aria-live="polite" aria-label="Loading content">
<div className="spinner-animation"></div>
<p>Crafting your content...</p>
</div>
);
} |