7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { ArrowPathIcon } from "@heroicons/react/24/solid";
|
|
import * as React from "react";
|
|
|
|
export function LoadingIcon() {
|
|
return <ArrowPathIcon className="w-5 h-5 animate-spin" />;
|
|
}
|