UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.47 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" fillRule="evenodd"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="m17.217 13.479 1 .693c1.156.812 2.365 1.738 3.304 2.941a1.47 1.47 0 0 1 .188 1.485 5.87 5.87 0 0 1-3.72 3.314l-.325.087c-.32.08-.7.149-1.112.133l-.217-.01-.386-.034-.144-.016-.31-.042-.166-.026-.352-.064a12 12 0 0 1-.378-.082l-.402-.1c-1.588-.423-3.683-1.306-5.917-3.134l1.422-1.422c2.03 1.62 3.885 2.35 5.21 2.675l.347.08.32.06q.075.015.148.025l.274.04.243.026.3.022.082.004c.113.004.24-.008.392-.039l.235-.055a3.87 3.87 0 0 0 2.485-1.95c-.712-.835-1.596-1.52-2.571-2.21l-.748-.521-1.312 1.312a1.47 1.47 0 0 1-1.589.329l-.24-.101-.297-.134-.343-.167a13 13 0 0 1-1.463-.868l1.442-1.443c.513.326.982.563 1.326.72L15.3 13.65a1.5 1.5 0 0 1 1.918-.171ZM5.412 2.286a1.47 1.47 0 0 1 1.445.159c1.11.809 1.981 1.906 2.728 2.966l.434.629.507.747a1.505 1.505 0 0 1-.079 1.806l-.097.107-1.356 1.356c.19.42.5 1.026.948 1.67l.174.244 5.894-5.895a1 1 0 0 1 1.498 1.32l-.083.095L3.99 20.925a1 1 0 0 1-1.498-1.32l.083-.095 3.255-3.255c-2.042-2.322-3.04-4.53-3.523-6.216L2.2 9.644l-.088-.373-.072-.351-.057-.327-.023-.154-.038-.29-.027-.262-.017-.234-.01-.205c-.013-.33.029-.639.087-.913l.061-.262a5.9 5.9 0 0 1 3.396-3.987m.516 1.967a3.9 3.9 0 0 0-1.911 2.29l-.076.278a2 2 0 0 0-.075.553l.015.257.032.327.035.254.047.282.029.151.07.321q.019.083.04.17l.097.357.116.378c.443 1.363 1.29 3.107 2.901 4.967l1.44-1.441a12.4 12.4 0 0 1-1.004-1.51l-.209-.382-.091-.18-.16-.328-.18-.407L7 10.481a1.47 1.47 0 0 1 .33-1.589l1.314-1.315-.061-.09c-.854-1.257-1.637-2.41-2.655-3.235Z"/> </G> </Svg>); }); Icon.displayName = 'PhoneOffLine'; /** * MingCute Icon: Phone Off Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const PhoneOffLine = Icon;