import React from 'react'; import { Story, Meta } from '@storybook/react'; import HelpIcon from './../Icon/HelpIcon/HelpIcon'; import ToolTip from './../ToolTip/ToolTip'; import Typography, { ITypographyProps } from './Typography'; export default { title: 'Text/Typography', component: Typography, parameters: { docs: { description: { component: Typography.peek.description, }, }, }, } as Meta; /* Variants */ export const Variants: Story = (args) => { const { Title, Target } = ToolTip; return (
h1. Heading
h2. Heading
h3. Heading
p. paragraph text
tabular. text for tables
a. link text
pre. preformatted text
code. snazzy code
kbd. keyboard inputs
samp. sample code outputs
span. sample code outputs with help bubble
look at me
{' '}
); }; /* Nested */ export const Nested: Story = (args) => { return (
Title subtitle Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pencil mustachioed graeme souness, mustachioed waxy gurn rugged el snort graeme souness burt reynolds educated village people boogie nights pencil man of the year 1986, pencil village people graeme souness rugged boogie nights mouthbrow educated burt reynolds waxy gurn man of the year 1986 des lynam charming villain mustachioed cardinal richelieu el snort. Borat d’artagnan hungarian testosterone trophy frontiersman hairy kiss. beefeater chevron, hairy kiss. cardinal richelieu groucho-a-like testosterone trophy d’artagnan dick van dyke rugged chevron Droopy frontiersman borat beefeater hungarian chevron, cardinal richelieu d’artagnan beefeater el snort Droopy dodgy uncle clive groucho-a-like hairy kiss. chevron frontiersman chevron dick van dyke walrus leader of men rugged borat bad guy testosterone trophy groucho-a-like alpha trion hungarian.
Like!
Subscribe!
Code Example npm install all-the-things
); };