aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/mui/Typography.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/mui/Typography.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/mui/Typography.tsx9
1 files changed, 9 insertions, 0 deletions
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 <p>{children}</p>;
+}