From 1607c728bca19a003ca08b64b4d2afc73e4d1e2a Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 9 Mar 2022 14:00:02 -0300 Subject: first banner implementation with mui --- packages/taler-wallet-webextension/src/mui/Typography.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 packages/taler-wallet-webextension/src/mui/Typography.tsx (limited to 'packages/taler-wallet-webextension/src/mui/Typography.tsx') diff --git a/packages/taler-wallet-webextension/src/mui/Typography.tsx b/packages/taler-wallet-webextension/src/mui/Typography.tsx new file mode 100644 index 000000000..4fc614463 --- /dev/null +++ b/packages/taler-wallet-webextension/src/mui/Typography.tsx @@ -0,0 +1,9 @@ +import { h, Fragment, VNode, ComponentChildren } from "preact"; + +interface Props { + children: ComponentChildren; +} + +export function Typography({ children }: Props): VNode { + return

{children}

; +} -- cgit v1.2.3