storybook/docs/snippets/react/button-story-with-emojis.js.mdx
2021-08-28 01:52:57 +01:00

23 lines
465 B
Plaintext

```ts
// Button.stories.js | Button.stories.jsx
import React from 'react';
import { Button } from './Button';
export default {
component: Button,
};
export const Primary = {
render: () => <Button backgroundColor="#ff0" label="Button" />,
};
export const Secondary = {
render: () => <Button backgroundColor="#ff0" label="😄👍😍💯" />,
};
export const Tertiary = {
render: () => <Button backgroundColor="#ff0" label="📚📕📈🤓" />,
};
```