UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 472 B
import React from 'react'; export default function CompassIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-compass ${props.className}`} viewBox="0 0 24 24" > <path d="M14.19 14.19L6 18l3.81-8.19L18 6m-6-4A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 8.9a1.1 1.1 0 0 0-1.1 1.1 1.1 1.1 0 0 0 1.1 1.1 1.1 1.1 0 0 0 1.1-1.1 1.1 1.1 0 0 0-1.1-1.1z" /> </svg> ); }