diff options
Diffstat (limited to 'src/components/Main.tsx')
-rw-r--r-- | src/components/Main.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Main.tsx b/src/components/Main.tsx index 3e6f3e7..6be61a3 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -18,8 +18,9 @@ import { CardHeader, CardTitle, } from "@/components/ui/card"; -import { Loader2 } from "lucide-react"; // Loading spinner import { useRouter } from "waku"; +import { Spinner } from "./ui/spinner"; +import { Loader2 } from "lucide-react"; const SorlangPage: React.FC = () => { const [textValue, setTextValue] = useState<string>(""); @@ -192,7 +193,8 @@ const SorlangPage: React.FC = () => { > {isExtracting ? ( <> - <Loader2 className="mr-2 h-4 w-4 animate-spin" /> + {/*<Loader2 className="mr-2 h-4 w-4 animate-spin" />*/} + <Spinner /> Extracting... </> ) : ( |