forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypography.tsx
More file actions
27 lines (24 loc) · 797 Bytes
/
Copy pathTypography.tsx
File metadata and controls
27 lines (24 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React from 'react';
const Typography = (): React.ReactElement => (
<div>
<h2 className="ui-title">Typograpy</h2>
<div className="row">
<div className="col">
<h1 className="text-muted">h1. Unused</h1>
<h2 className="text-muted">h2. Unused</h2>
<h3 className="text-muted">h3. Unused</h3>
<h4>h4. Standard Heading</h4>
<h5>h5. Small Heading</h5>
<h6 className="text-muted">h6. Unused</h6>
</div>
<div className="col">
<h4>Fonts</h4>
<p>UI: Fira Sans;</p>
<p className="text-monospace">Code: Fira Mono;</p>
<p>Tables: Fira Sans; font-feature-settings: "tnum";</p>
<p>Default font-size: 14px = 1rem</p>
</div>
</div>
</div>
);
export default Typography;