UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.72 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="M14 3a1 1 0 0 1 .117 1.993L14 5h-1v1h1.002c.237.001.475.025.71.055l.341.05c.368.062.816.16 1.31.316a9.5 9.5 0 0 1 3.13 1.678L19.587 8l.707-.707a1 1 0 0 1 1.497 1.32l-.083.094-.707.707V16a5 5 0 0 1-4.783 4.995L16 21H8a5 5 0 0 1-4.995-4.783L3 16V9.414l-.707-.707a1 1 0 0 1 1.32-1.497l.094.083.707.707q.048.048.092.099a9.5 9.5 0 0 1 3.13-1.678 10 10 0 0 1 1.31-.316l.341-.05a7 7 0 0 1 .474-.047L9.998 6H11V5h-1a1 1 0 0 1-.117-1.993L10 3zm5 8.21c-4.496.8-8.813.84-13.292.12L5 11.21V16a3 3 0 0 0 2.824 2.995L8 19h8a3 3 0 0 0 2.995-2.824L19 16zM13.996 8l-4.04.001-.18.013-.3.034-.257.04-.143.027-.313.068a7.5 7.5 0 0 0-2.63 1.19 37 37 0 0 0 11.734 0 7.5 7.5 0 0 0-2.106-1.044c-.565-.179-1.168-.316-1.764-.329"/> </G> </Svg>); }); Icon.displayName = 'SoupPot2Line'; /** * MingCute Icon: Soup Pot 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SoupPot2Line = Icon;