19 lines
387 B
TypeScript
Executable File
19 lines
387 B
TypeScript
Executable File
/**
|
|
* Spinner.tsx
|
|
*
|
|
* @author Descomplicar® Crescimento Digital
|
|
* @link https://descomplicar.pt
|
|
* @copyright 2025 Descomplicar®
|
|
*/
|
|
|
|
|
|
import React from 'react';
|
|
|
|
const Spinner: React.FC = () => {
|
|
return (
|
|
<div className="w-12 h-12 border-4 border-t-4 border-slate-200 dark:border-slate-600 border-t-sky-500 rounded-full animate-spin"></div>
|
|
);
|
|
};
|
|
|
|
export default Spinner;
|