storybook/docs/snippets/html/button-story-with-emojis.js.mdx

17 lines
578 B
Plaintext

```js
// Button.stories.js
import { createButton } from './Button';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/html/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Button',
};
export const Primary = () => createButton({ backgroundColor: "#ff0", label: "Button"});
export const Secondary = () => createButton({ backgroundColor: "#ff0", label: "😄👍😍💯"});
export const Tertiary = () => createButton({ backgroundColor: "#ff0", label: "📚📕📈🤓"});
```