aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/layout/header-logo.jsx
blob: 115b2345956cdfb5b7aff3b71753897ece942648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import { Image } from '@mantine/core';
import { Link } from 'react-router-dom';
import { VespaLogo } from 'app/assets';

export function HeaderLogo() {
  return (
    <Link to="/">
      <Image height={34} src={VespaLogo} />
    </Link>
  );
}