storybook/docs/snippets/react/button-story-with-emojis.js.mdx
2020-08-14 01:09:29 +05:30

9 lines
278 B
Plaintext

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