mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
35 lines
668 B
Svelte
35 lines
668 B
Svelte
<script>
|
|
import './button.css';
|
|
|
|
/**
|
|
* Is this the principal call to action on the page?
|
|
*/
|
|
export let primary = false;
|
|
|
|
/**
|
|
* What background color to use
|
|
*/
|
|
export let backgroundColor = undefined;
|
|
/**
|
|
* How large should the button be?
|
|
*/
|
|
export let size = 'medium';
|
|
/**
|
|
* Button contents
|
|
*/
|
|
export let label;
|
|
|
|
$: mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
|
|
$: style = backgroundColor ? `background-color: ${backgroundColor}` : '';
|
|
</script>
|
|
|
|
<button
|
|
type="button"
|
|
class={['storybook-button', `storybook-button--${size}`, mode].join(' ')}
|
|
{style}
|
|
on:click
|
|
>
|
|
{label}
|
|
</button>
|