wallet-core/packages/taler-wallet-webextension/src/components/LogoHeader.tsx

15 lines
284 B
TypeScript
Raw Normal View History

2021-08-23 21:51:49 +02:00
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>
}