import './button.css'; import { createElement } from 'rax'; /** * Primary UI component for user interaction */ export const Button = ({ primary, backgroundColor, size, label, ...props }) => { const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary'; return ( ); }; Button.defaultProps = { backgroundColor: null, primary: false, size: 'medium', onClick: undefined, };