// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { boolean, select, text } from '@storybook/addon-knobs'; import { action } from '@storybook/addon-actions'; import { StoryRow } from '../elements/StoryRow'; import { StickerFrame } from './StickerFrame'; export default { title: 'Sticker Creator/components', }; export const _StickerFrame = (): JSX.Element => { const image = text('image url', '/fixtures/512x515-thumbs-up-lincoln.webp'); const showGuide = boolean('show guide', true); const mode = select('mode', [null, 'removable', 'pick-emoji', 'add'], null); const onRemove = action('onRemove'); const onDrop = action('onDrop'); const [skinTone, setSkinTone] = React.useState(0); const [emoji, setEmoji] = React.useState(undefined); return ( setEmoji(e.emoji)} onDrop={onDrop} /> ); }; _StickerFrame.story = { name: 'StickerFrame', };