import React from 'react'; const ExpandDropdownIcon = ({ width = 14, height = 14, color = '#000', arrowPointsUp = false, }) => ( {arrowPointsUp ? ( ) : ( )} ); export default ExpandDropdownIcon;