storybook/docs/snippets/react/button-story-with-emojis.js.mdx
2021-06-28 23:00:33 +01:00

7 lines
297 B
Plaintext

```ts
// Button.stories.js | Button.stories.jsx
export const Primary = () => <Button background="#ff0" label="Button" />;
export const Secondary = () => <Button background="#ff0" label="😄👍😍💯" />;
export const Tertiary = () => <Button background="#ff0" label="📚📕📈🤓" />;
```