react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 522 B
JavaScript
import React from 'react';
export default function CompassOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-compass-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M7 17l3.2-6.8L17 7l-3.2 6.8L7 17m5-5.9a.9.9 0 0 0-.9.9.9.9 0 0 0 .9.9.9.9 0 0 0 .9-.9.9.9 0 0 0-.9-.9M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8z" />
</svg>
);
}