summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/LogoHeader.tsx
blob: b45dcb353aae1824b54d97d8505310e7da8eea20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { h } from "preact";

export function LogoHeader() {
  return <div style={{
    display: 'flex',
    justifyContent: 'space-around',
    margin: '2em',
  }}>
    <img style={{
      width: 150,
      height: 70,
    }} src="/static/img/logo-2021.svg" width="150" />
  </div>

}