// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
/* eslint-disable 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 function 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.
>
);
}