aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/LogoHeader.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/LogoHeader.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/components/LogoHeader.tsx31
1 files changed, 19 insertions, 12 deletions
diff --git a/packages/taler-wallet-webextension/src/components/LogoHeader.tsx b/packages/taler-wallet-webextension/src/components/LogoHeader.tsx
index 9b75c62a1..6c47dc92a 100644
--- a/packages/taler-wallet-webextension/src/components/LogoHeader.tsx
+++ b/packages/taler-wallet-webextension/src/components/LogoHeader.tsx
@@ -17,15 +17,22 @@
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>
-
-} \ No newline at end of file
+ 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>
+ );
+}