mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
22 lines
516 B
JavaScript
22 lines
516 B
JavaScript
import './button.css';
|
|
|
|
export const createButton = ({
|
|
primary = false,
|
|
size = 'medium',
|
|
backgroundColor,
|
|
label,
|
|
onClick,
|
|
}) => {
|
|
const btn = document.createElement('button');
|
|
btn.type = 'button';
|
|
btn.innerText = label;
|
|
btn.addEventListener('click', onClick);
|
|
|
|
const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
btn.className = ['storybook-button', `storybook-button--${size}`, mode].join(' ');
|
|
|
|
btn.style.backgroundColor = backgroundColor;
|
|
|
|
return btn;
|
|
};
|