OpenHands / frontend /src /components /shared /buttons /all-hands-logo-button.tsx
Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame contribute delete
522 Bytes
import { useTranslation } from "react-i18next";
import AllHandsLogo from "#/assets/branding/all-hands-logo.svg?react";
import { I18nKey } from "#/i18n/declaration";
import { TooltipButton } from "./tooltip-button";
export function AllHandsLogoButton() {
const { t } = useTranslation();
return (
<TooltipButton
tooltip={t(I18nKey.BRANDING$ALL_HANDS_AI)}
ariaLabel={t(I18nKey.BRANDING$ALL_HANDS_LOGO)}
navLinkTo="/"
>
<AllHandsLogo width={34} height={34} />
</TooltipButton>
);
}