mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-05 08:06:19 +00:00
19 lines
632 B
TypeScript
19 lines
632 B
TypeScript
import React from 'react';
|
|
|
|
function Loader() {
|
|
return (
|
|
<div className="loader">
|
|
{/* Example Loader: Spinner */}
|
|
<svg className="animate-spin h-5 w-5 text-gray-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
|
<path
|
|
className="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8v8H4z"
|
|
></path>
|
|
</svg>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Loader;
|