@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 656 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="M18 2a1 1 0 0 1 1 1v8h-2V4H7v16h4v2H6a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm-3 10a4 4 0 0 1 3.446 6.032l2.21 2.21-1.413 1.415-2.212-2.21A4 4 0 1 1 15 12m0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4"/>
</Svg>);
});
Icon.displayName = 'PhoneFindLine';
/**
* Remix Icon: Phone Find Line
* @see {@link https://remixicon.com/icon/phone-find-line Remix Icon Docs}
*/
export const PhoneFindLine = Icon;