tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Logo.jsx (552B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 import React from "react";
      6 
      7 function Logo() {
      8  return (
      9    <h1 className="logo-and-wordmark-wrapper">
     10      <div
     11        className="logo-and-wordmark"
     12        role="img"
     13        data-l10n-id="newtab-logo-and-wordmark"
     14      >
     15        <div className="logo" />
     16        <div className="wordmark" />
     17      </div>
     18    </h1>
     19  );
     20 }
     21 
     22 export { Logo };