storybook/docs/snippets/react/button-story-with-emojis.ts.mdx
2021-06-28 23:00:33 +01:00

7 lines
342 B
Plaintext

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