aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Typography.tsx
diff options
context:
space:
mode:
authorAugust Skare <post@augustskare.no>2018-10-18 21:25:08 +0800
committerAugust Skare <post@augustskare.no>2018-10-18 21:25:08 +0800
commit30f7f83573c9254de336c3c2fc7297188d47af15 (patch)
tree8390963c9c346d9567a9f3a100841a57a2435896 /packages/dev-tools-pages/ts/components/Typography.tsx
parent97646571a1bf4514edb52a7bc14bb157dfa3025c (diff)
downloaddexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar.gz
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar.bz2
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar.lz
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar.xz
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.tar.zst
dexon-sol-tools-30f7f83573c9254de336c3c2fc7297188d47af15.zip
added trace component to trace view
Diffstat (limited to 'packages/dev-tools-pages/ts/components/Typography.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/Typography.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/Typography.tsx b/packages/dev-tools-pages/ts/components/Typography.tsx
index 3ce18df3b..9251d31b4 100644
--- a/packages/dev-tools-pages/ts/components/Typography.tsx
+++ b/packages/dev-tools-pages/ts/components/Typography.tsx
@@ -10,8 +10,12 @@ const Beta = styled.h3`
line-height: 1.65;
`;
+const Gamma = styled.h4`
+ font-size: 1rem;
+`;
+
const Small = styled.p`
font-size: 0.875rem;
`;
-export { Alpha, Beta, Small };
+export { Alpha, Beta, Gamma, Small };