import React from 'react'; import PropTypes from 'prop-types'; import './button.css'; /** * Primary UI component for user interaction */ export const Button = ({ primary = false, size = 'medium', backgroundColor, label, ...props }) => { const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary'; return ( ); }; Button.propTypes = { backgroundColor: PropTypes.string, label: PropTypes.string, primary: PropTypes.bool, size: PropTypes.string };