comfyui-deploy/web/src/components/LoadingIcon.tsx

8 lines
184 B
TypeScript

"use client";
import { LoaderIcon } from "lucide-react";
import * as React from "react";
export function LoadingIcon() {
return <LoaderIcon size={14} className="animate-spin" />;
}