15 lines
No EOL
344 B
JavaScript
15 lines
No EOL
344 B
JavaScript
// License: LGPL-3.0-or-later
|
|
import React from 'react';
|
|
import { Button } from '@storybook/react/demo';
|
|
|
|
export default { title: 'Button' };
|
|
|
|
export const withText = () => <Button>Hello Button</Button>;
|
|
|
|
export const withEmoji = () => (
|
|
<Button>
|
|
<span role="img" aria-label="so cool">
|
|
😀 😎 👍 💯
|
|
</span>
|
|
</Button>
|
|
); |