UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.94 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="M6.373 10.279c-.45-.361-.428-.906-.194-1.374a6 6 0 0 1 3.47-3.009l.086-.029-.235-.705a2.635 2.635 0 1 1 5 0l-.235.705.086.03a6 6 0 0 1 3.47 3.008c.233.468.255 1.013-.194 1.374.542.751.767 1.737.542 2.683-.213.899-.37 1.817-.37 2.538s.157 1.639.37 2.538C18.62 19.94 17.257 22 15.151 22H8.85c-2.106 0-3.47-2.06-3.019-3.962.213-.9.37-1.817.37-2.538s-.157-1.64-.37-2.538c-.224-.946 0-1.932.542-2.683m5.343-6.52a.636.636 0 0 1 .887.77l-.394 1.18a1.5 1.5 0 0 0 .949 1.898l.56.187a4 4 0 0 1 1.804 1.228 3 3 0 0 0-.37-.022H8.848q-.19 0-.371.022a4 4 0 0 1 1.803-1.228l.56-.187a1.5 1.5 0 0 0 .95-1.898l-.394-1.18c-.1-.3.036-.628.319-.769m-3.94 8.742C7.588 11.706 8.183 11 8.85 11h6.302c.666 0 1.26.706 1.072 1.5-.224.947-.423 2.044-.423 3 0 .955.199 2.053.423 2.999.189.795-.406 1.5-1.072 1.5H8.85c-.666 0-1.261-.705-1.073-1.5q.06-.246.114-.505a1 1 0 0 0 .11.006h3a1 1 0 1 0 0-2H8.183a8 8 0 0 0 0-1H11a1 1 0 1 0 0-2H7.889q-.054-.255-.113-.5"/> </G> </Svg>); }); Icon.displayName = 'FeederLine'; /** * MingCute Icon: Feeder Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const FeederLine = Icon;