zzz / frontend /src /components /shared /buttons /all-hands-logo-button.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
473 Bytes
import AllHandsLogo from "#/assets/branding/all-hands-logo.svg?react";
import { TooltipButton } from "./tooltip-button";
interface AllHandsLogoButtonProps {
onClick: () => void;
}
export function AllHandsLogoButton({ onClick }: AllHandsLogoButtonProps) {
return (
<TooltipButton
tooltip="All Hands AI"
ariaLabel="All Hands Logo"
onClick={onClick}
>
<AllHandsLogo width={44} height={30} />
</TooltipButton>
);
}