Spaces:
Sleeping
Sleeping
| /** | |
| * @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> | |
| ); | |
| } |