@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.47 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M5.412 2.286a1.47 1.47 0 0 1 1.445.159C8.12 3.366 9.076 4.66 9.89 5.849l.638.938a1.505 1.505 0 0 1-.08 1.806l-.097.107-1.356 1.356.143.304c.35.709.954 1.73 1.863 2.64a9.9 9.9 0 0 0 2.104 1.58l.367.197.327.162.146.067L15.3 13.65a1.5 1.5 0 0 1 1.918-.171l1.014.703c1.152.81 2.355 1.733 3.29 2.931a1.47 1.47 0 0 1 .189 1.485c-.837 1.953-2.955 3.616-5.158 3.534l-.3-.016-.233-.02-.258-.03-.281-.038-.305-.051-.326-.064-.346-.077-.366-.094-.385-.11-.402-.13c-1.846-.626-4.189-1.856-6.593-4.26s-3.633-4.746-4.259-6.592l-.13-.402-.11-.385-.094-.366-.078-.346a12 12 0 0 1-.063-.326l-.05-.305-.04-.281-.029-.258-.02-.233-.016-.3c-.081-2.196 1.6-4.329 3.544-5.162Zm.517 1.967c-1.072.56-2.11 1.84-2.063 3.121l.02.328.022.205.029.23.04.253.051.277.065.298.08.32.096.339.114.358q.063.183.134.375l.154.392.176.407c.628 1.382 1.652 3 3.325 4.672 1.672 1.672 3.29 2.697 4.672 3.325l.407.176.392.154q.192.072.375.134l.358.114.34.096.319.08.298.065.277.051.254.04.23.03.204.02.328.02c1.264.047 2.554-.985 3.112-2.043-.712-.835-1.596-1.52-2.571-2.21l-.748-.521-.19.199-.406.443-.215.226c-.586.597-1.27 1.104-2.09.773l-.226-.095-.276-.124-.154-.073-.338-.169-.371-.2a11.9 11.9 0 0 1-2.567-1.925 11.9 11.9 0 0 1-1.925-2.567l-.2-.37-.17-.339-.196-.43L7 10.48c-.311-.769.117-1.418.664-1.98l.224-.22.557-.513.2-.19-.473-.693c-.703-1.02-1.39-1.94-2.243-2.632ZM20 3a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V6.414l-3.293 3.293a1 1 0 0 1-1.414-1.414L17.586 5H16a1 1 0 1 1 0-2z"/>
</G>
</Svg>);
});
Icon.displayName = 'PhoneOutgoingLine';
/**
* MingCute Icon: Phone Outgoing Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PhoneOutgoingLine = Icon;