@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 523 B
JavaScript
const SvgTrendingDownRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path d='M0 0h24v24H0V0z' fill='none' />
<path d='M16.85 17.15l1.44-1.44-4.88-4.88-3.29 3.29a.996.996 0 01-1.41 0l-6-6.01A.996.996 0 114.12 6.7L9.41 12l3.29-3.29a.996.996 0 011.41 0l5.59 5.58 1.44-1.44a.5.5 0 01.85.35v4.29c0 .28-.22.5-.5.5H17.2c-.44.01-.66-.53-.35-.84z' />
</svg>
);
}
export default SvgTrendingDownRound;