05-Typography.stories.tsx 973 B

1234567891011121314151617181920212223242526
  1. import React from "react"
  2. import { Typography } from "../src"
  3. import { faBan } from "@fortawesome/free-solid-svg-icons"
  4. export default {
  5. title: "Typography",
  6. component: Typography,
  7. }
  8. export const Primary = () => (
  9. <div style={{ backgroundColor: "black" }}>
  10. <Typography variant="hero">Hero</Typography>
  11. <Typography variant="h1">Heading 1</Typography>
  12. <Typography variant="h2">Heading 2</Typography>
  13. <Typography variant="h3">Heading 3</Typography>
  14. <Typography variant="h4">Heading 4</Typography>
  15. <Typography variant="h5">Heading 5</Typography>
  16. <Typography variant="h6">Heading 6</Typography>
  17. <Typography variant="subtitle1">Subtitle 1</Typography>
  18. <Typography variant="subtitle2">Subtitle 2</Typography>
  19. <Typography variant="body1">Body 1</Typography>
  20. <Typography variant="body2">Body 2</Typography>
  21. <Typography variant="caption">Caption</Typography>
  22. <Typography variant="overhead">Overhead</Typography>
  23. </div>
  24. )