UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.78 kB
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"> <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 3.278 8.89 4.415 9.65 5.503l.442.644.417.615c.4.584.337 1.369-.146 1.88l-.11.106-1.951 1.449a.48.48 0 0 0-.142.615c.442.804 1.228 2 2.128 2.9s2.153 1.738 3.012 2.23a.48.48 0 0 0 .585-.088l.059-.074 1.27-1.933a1.503 1.503 0 0 1 2.056-.332l.706.49c1.294.903 2.567 1.856 3.545 3.108a1.47 1.47 0 0 1 .189 1.485c-.832 1.941-2.966 3.615-5.158 3.534l-.3-.016-.233-.02-.258-.03-.281-.038-.305-.051-.326-.064-.346-.078-.366-.093-.385-.111-.402-.13c-1.846-.625-4.189-1.855-6.593-4.258s-3.633-4.747-4.259-6.593l-.13-.402-.11-.385-.094-.366-.078-.346-.063-.326-.05-.305-.04-.281-.029-.258-.02-.233-.016-.3c-.081-2.196 1.6-4.33 3.544-5.162M20 3a1 1 0 0 1 1 1v4a1 1 0 0 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 = 'PhoneOutgoingFill'; /** * MingCute Icon: Phone Outgoing Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const PhoneOutgoingFill = Icon;