feat: only one button for convert and download with smooth loading animation

This commit is contained in:
theoleuthardt 2025-02-13 01:39:03 +01:00
parent 69b572bf74
commit 7b584d2fff
2 changed files with 24 additions and 8 deletions

View file

@ -1,8 +1,8 @@
import React from "react";
import React, { JSX } from "react";
interface ButtonProps {
className?: string;
content: string;
content: string | JSX.Element;
onClick?: () => void;
visible?: boolean;
}