import Button from '../button' import { RiInstallLine, RiLoader2Line } from '@remixicon/react' type InstallButtonProps = { loading: boolean onInstall: (e: React.MouseEvent) => void t: any } const InstallButton = ({ loading, onInstall, t }: InstallButtonProps) => { return ( ) } export default InstallButton