storybook/docs/snippets/react/button-story-with-emojis.ts.mdx
2020-08-07 17:05:17 +01:00

8 lines
325 B
Plaintext

```ts
// Button.stories.ts
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="📚📕📈🤓" />;
```