@iconscout/react-unicons-solid
Version:
4,500+ vector solid icons as easy to use React Components
22 lines (19 loc) • 1.02 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const UisRefresh = ({ color = 'currentColor', size = 24, ...otherProps }) => {
return React.createElement('svg', {
xmlns: 'http://www.w3.org/2000/svg',
width: size,
height: size,
viewBox: '0 0 24 24',
fill: color,
...otherProps
}, React.createElement('path', {
d: 'M15,12c0-1.7-1.3-3-3-3s-3,1.3-3,3s1.3,3,3,3S15,13.7,15,12z M17,3.3C13.1,1.1,8.3,1.8,5.1,4.7V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v4.5c0,0.6,0.4,1,1,1h4.5c0.6,0,1-0.4,1-1s-0.4-1-1-1H6.2C7.7,4.9,9.8,4,12,4c4.4,0,8,3.6,8,8v0c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1C22,8.4,20.1,5.1,17,3.3z M19.9,15.5h-4.5c-0.6,0-1,0.4-1,1s0.4,1,1,1h2.4C16.3,19.1,14.2,20,12,20c-4.4,0-8-3.6-8-8c0-0.6-0.4-1-1-1s-1,0.4-1,1c0,5.5,4.5,10,10,10c2.6,0,5-1,6.9-2.8V21c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-4.5C20.9,15.9,20.4,15.5,19.9,15.5z'
}));
};
UisRefresh.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
export default UisRefresh;