@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 701 B
JavaScript
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 3c4.285 0 8.22 1.497 11.31 3.996l-1.256 1.556A15.93 15.93 0 0 0 12 5c-3.09 0-5.974.875-8.42 2.392l8.42 10.425L18 10.388v3.183L12 21 .69 6.997A17.93 17.93 0 0 1 12 3m10 16v2h-2v-2zm0-9v7h-2v-7z"/>
</Svg>);
});
Icon.displayName = 'SignalWifiErrorLine';
/**
* Remix Icon: Signal Wifi Error Line
* @see {@link https://remixicon.com/icon/signal-wifi-error-line Remix Icon Docs}
*/
export const SignalWifiErrorLine = Icon;