Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import hbs from 'htmlbars-inline-precompile';
import { withKnobs, text } from '@storybook/addon-knobs';
export default {
title: 'Components/Copy Button',
decorators: [withKnobs],
};
export let CopyButton = () => {
return {
template: hbs`
<h5 class="title is-5">Copy Button</h5>
<span class="tag is-hollow is-small no-text-transform">
{{clipboardText}}
<CopyButton @clipboardText={{clipboardText}} />
</span>
<h5 class="title is-5">Copy Button with content</h5>
<CopyButton @clipboardText={{clipboardText}}>{{clipboardText}}</CopyButton>
`,
context: {
clipboardText: text(
'Clipboard Text',
'e8c898a0-794b-9063-7a7f-bf0c4a405f83'
),
},