// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only /* eslint-disable no-script-url, jsx-a11y/anchor-is-valid */ import * as React from 'react'; import { text } from '@storybook/addon-knobs'; import { StoryRow } from './StoryRow'; import { H1, H2, Text } from './Typography'; export default { title: 'Sticker Creator/elements', }; export const Typography = (): JSX.Element => { const child = text('text', 'foo bar'); return ( <>

{child}

{child}

{child} {child} {child} {child} {child} {child} {child} {child}{' '} Something something something dark side. ); };