@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 647 B
JavaScript
const SvgDataExplorationRound = (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='M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 1.33.26 2.61.74 3.77l4.61-4.62a1 1 0 011.35-.06l2.6 2.19L14.58 10H14c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1v-.58l-3.94 3.93a.99.99 0 01-1.35.05l-2.59-2.19-4.4 4.4A9.996 9.996 0 0012 22h8c1.1 0 2-.9 2-2v-8zm-2.5 8.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z' />
</svg>
);
}
export default SvgDataExplorationRound;