import PropTypes from 'prop-types'; // third-party import { motion } from 'framer-motion'; // ==============================|| ANIMATION BUTTON ||============================== // export default function AnimateButton({ children, type = 'scale' }) { switch (type) { case 'rotate': // only available in paid version case 'slide': // only available in paid version case 'scale': // only available in paid version default: return ( {children} ); } } AnimateButton.propTypes = { children: PropTypes.node, type: PropTypes.oneOf(['slide', 'scale', 'rotate']) };