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