import icons from './icons' const Icon = ({ size = 24, icon = 'github', color = false, className = '', embed = false }) => { const svgProps = { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', className: className, } if (size && !embed) { svgProps.width = size svgProps.height = size } return ( ) } export default Icon