@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 700 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="m6.116 20.087 1.015-1.739a8 8 0 1 1 9.738 0l1.015 1.739A9.99 9.99 0 0 0 22 12c0-5.523-4.477-10-10-10S2 6.477 2 12a9.99 9.99 0 0 0 4.116 8.087m2.034-3.485a6 6 0 1 1 7.7 0l-1.03-1.766a4 4 0 1 0-5.64 0zM11 13h2v9h-2z"/>
</Svg>);
});
Icon.displayName = 'SignalTowerLine';
/**
* Remix Icon: Signal Tower Line
* @see {@link https://remixicon.com/icon/signal-tower-line Remix Icon Docs}
*/
export const SignalTowerLine = Icon;