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

7 lines
322 B
Plaintext

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