UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 878 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m12.507 3.623-1.024 1.772c-2.91-.879-5.513-.45-6.41 1.105-1.178 2.04.79 5.652 4.677 7.897 3.888 2.245 8.001 2.142 9.179.103.897-1.555-.033-4.024-2.25-6.105l1.024-1.772c3.082 2.709 4.462 6.27 2.957 8.877-1.86 3.222-7.188 3.355-11.91.63C4.03 13.402 1.48 8.721 3.34 5.5c1.505-2.607 5.28-3.192 9.167-1.877m3.377-1.85 1.732 1-5 8.66-1.732-1zM6.732 20H17v2H5.018a1 1 0 0 1-1.015-.922 1 1 0 0 1 .131-.578l2.25-3.897 1.732 1z"/> </Svg>); }); Icon.displayName = 'RadarLine'; /** * Remix Icon: Radar Line * @see {@link https://remixicon.com/icon/radar-line Remix Icon Docs} */ export const RadarLine = Icon;