storybook/docs/snippets/react/button-story-with-emojis.js.mdx
2021-02-23 00:26:03 +00:00

7 lines
276 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="📚📕📈🤓" />;
```