storybook/docs/snippets/react/button-story-with-emojis.ts.mdx
2020-08-14 21:46:15 +01:00

9 lines
325 B
Plaintext

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