12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import React from "react";
|
|
|
|
const Loader = () => {
|
|
return (
|
|
<span
|
|
className={`ml-1.5 h-4 w-4 animate-spin rounded-full border-2 border-solid border-white border-t-transparent dark:border-t-transparent`}
|
|
></span>
|
|
);
|
|
};
|
|
|
|
export default Loader;
|