/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views/Components/GiveIcon
NameSizeModeActions
index.js9780644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views/Components/GiveIcon/index.js (978B)
import PropTypes from 'prop-types'; const colorMap = { white: '#fff', grey: '#555d66', give: '#66bb6a', }; /** * Give Icon */ const GiveIcon = ({color = 'give', size = '24px', ...rest}) => ( ); GiveIcon.propTypes = { color: PropTypes.oneOf(Object.keys(colorMap)), size: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), }; export default GiveIcon;