@nant-design/nant-icons
Version:
12 lines (8 loc) • 573 B
JSX
import React from 'react';
export const LocateOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M256 96V56m0 400v-40" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="48"/>
<path d="M256 112a144 144 0 1 0 144 144 144 144 0 0 0-144-144Z" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
<path d="M416 256h40m-400 0h40" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="48"/>
</svg>;
};