vytal-redux/src/pages/Popup/Navbar.js
2022-05-29 22:13:19 -04:00

45 lines
845 B
JavaScript

import * as React from 'react'
import Logo from '../../assets/img/logo.svg'
import Link from '../../assets/img/link.svg'
const Navbar = () => (
<div
style={{
width: '100%',
boxSizing: 'border-box',
display: 'flex',
justifyContent: 'space-between',
padding: '8px 12px',
backgroundColor: 'var(--navbar)',
alignItems: 'center',
}}
>
<img
src={Logo}
style={{
width: '100px',
height: '24px',
}}
alt="Vytal logo"
/>
<a
href="https://vytal.io/scan.html"
target="_blank"
rel="noreferrer"
style={{
height: '18px',
}}
>
<img
src={Link}
alt="Test Vytal"
style={{
width: '18px',
height: '18px',
}}
/>
</a>
</div>
)
export default Navbar