import PropTypes from 'prop-types'; import { motion } from 'motion/react'; import clsx from 'clsx'; function Button({text, onClick, disabled}) { return ( {text} ) } Button.propTypes = { text: PropTypes.string.isRequired, onClick: PropTypes.func.isRequired, disabled: PropTypes.bool, }; export default Button;