@evergreen-ui/core-typography
v1.0.0-alpha.2
Published
Core typography component for Evergreen component library
Downloads
2
Readme
Typography
Typography is used to apply Evergreen formats to displayed text.
Usage
import { Typography } from "@evergreen-ui/core";
<Typography variant="h1">H1</Typography>
<Typography variant="h2">H2</Typography>
<Typography variant="h2.light">H2</Typography>
<Typography variant="h3.medium">H3 (MEDIUM)</Typography>
<Typography variant="h3">H3</Typography>
<Typography variant="h4.medium">H4 (MEDIUM)</Typography>
<Typography variant="h4">H4</Typography>
<Typography variant="subtitle1">Subtitle 1</Typography>
<Typography variant="body1">Body 1</Typography>
<Typography variant="subtitle2">Subtitle 2</Typography>
<Typography variant="body2">Body 2</Typography>
<Typography variant="button" component="div">
Button
</Typography>
<Typography variant="caption.medium" component="div">
Caption (medium)
</Typography>
<Typography variant="caption" component="div">
Caption
</Typography>
<Typography variant="overline" component="div">
Overline
</Typography>
Properties
- Props are as provided under Typography Props (Material UI)
| propName | type | default | isRequired | | -------- | ----------------------------------------------------------------------------------- | ------- | ---------- | | variant | As documented. Additional values are: One of ('h2.light', 'h3.medium', 'h4.medium') | 'body1' | No |