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

8 lines
189 B
TypeScript

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