1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 09:44:53 +01:00
market/src/global/Typography.stories.tsx

34 lines
923 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
export default {
title: 'Typography'
}
export const Body = () => (
<div style={{ maxWidth: '600px' }}>
<p>
Sharp Sans Medium. Ummmto eBay? Oh sure!{' '}
<a href="">Blame the wizards!</a> Hello, little man.{' '}
<strong>I will destroy you!</strong> Ive been there. My folks were always
on me to groom myself and <em>wear underpants</em>. What am I, the pope?
Leelas gonna kill me.
</p>
<p>
Yes, I saw. You were doing well, until everyone died. Check it out, yall.
Everyone who was invited is here. But I know you in the future. I cleaned
your poop. Im sure those windmills will keep them cool.
</p>
</div>
)
export const Headings = () => (
<>
<h1>Sharp Sans Display No.1 Bold</h1>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
</>
)