UNPKG

curuxa

Version:

A design system for Leadmirror

19 lines (15 loc) 438 B
import React from 'react'; import { action } from '@storybook/addon-actions'; import { Button } from '@storybook/react/demo'; export default { title: 'Button', component: Button, }; export const Text = () => <Button onClick={action('clicked')}>Hello Button</Button>; export const Emoji = () => ( <Button onClick={action('clicked')}> <span role="img" aria-label="so cool"> 😀 😎 👍 💯 </span> </Button> );