import React from 'react' import styled from 'styled-components' import { EXT_NAME } from '../../utils/constants' import logo from '../assets/logo.svg' import { BaseProps, ThemeProps } from '../types' import { goToImport } from '../utils/routing' import { Button } from './Button' const Header: React.FC = ({ className }) => (
{EXT_NAME}
) export default styled(Header)` display: flex; justify-content: space-between; align-items: center; padding: 1rem; box-shadow: ${({ theme }: ThemeProps) => theme.shadow}; .text-holder { display: flex; align-items: center; } img { height: 1.5rem; width: 1.5rem; margin-right: 0.5rem; } `