signal-desktop/sticker-creator/components/StickerPackPreview.stories.tsx

30 lines
845 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2019-12-17 20:25:57 +00:00
import * as React from 'react';
import { text } from '@storybook/addon-knobs';
import { StoryRow } from '../elements/StoryRow';
import { StickerPackPreview } from './StickerPackPreview';
2022-06-07 00:48:02 +00:00
export default {
title: 'Sticker Creator/components',
};
2019-12-17 20:25:57 +00:00
2022-06-07 00:48:02 +00:00
export const _StickerPackPreview = (): JSX.Element => {
const image = text('image url', '/fixtures/512x515-thumbs-up-lincoln.webp');
const title = text('title', 'Sticker pack title');
const author = text('author', 'Sticker pack author');
const images = React.useMemo(() => Array(39).fill(image), [image]);
return (
<StoryRow top>
<StickerPackPreview images={images} title={title} author={author} />
</StoryRow>
);
};
_StickerPackPreview.story = {
name: 'StickerPackPreview',
};