@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 584 B
JavaScript
const SvgAreaChartRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path fill='none' d='M0 0h24v24H0z' />
<path d='M8 17l3.39-4.66c.33-.46.98-.55 1.42-.2L21 18.5v.5c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5.72c.22 0 .44.07.62.22L8 17zm-5-6c.44 0 .88.15 1.25.44l3.37 2.69 2.77-3.81c.66-.91 1.95-1.1 2.85-.4L21 15.97V8c0-.55-.45-1-1-1h-3l-4.18-3.34a.998.998 0 00-1.44.2L7 10 3.6 7.45c-.18-.13-.39-.2-.6-.2V11z' />
</svg>
);
}
export default SvgAreaChartRound;