import { googleIcon } from "./social_icons"; import React from "react" import { Button, cls } from "@firecms/ui"; import { useTranslation } from "@firecms/core"; export function GoogleLoginButton({ onClick, disabled }: { onClick: () => void, disabled?: boolean }) { const { t } = useTranslation(); return ( ) }