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="36px" /> </Link> </div> ); };