aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/documentation/docs_logo.tsx
blob: b65a27fd9241165184b4ac9f8735bd403434fca2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as React from 'react';
import { Link } from 'react-router-dom';
import { WebsitePaths } from 'ts/types';

export const DocsLogo = () => {
    return (
        <div style={{ paddingTop: 28 }}>
            <Link to={`${WebsitePaths.Home}`} className="text-decoration-none">
                <img src="/images/docs_logo.svg" height="30px" />
            </Link>
        </div>
    );
};