const Badge = (props) => { const { text = '', variant = 'secondary', color = '' } = props; return ( {text} ); // {text}; }; export default Badge;