@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.9 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M13.179 1.971a2.635 2.635 0 0 1 1.321 3.19l-.235.706.086.03a6 6 0 0 1 3.47 3.008l.073.148a1 1 0 0 1-.267 1.226c.542.751.767 1.737.542 2.683-.213.899-.37 1.817-.37 2.538 0 .72.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.538 0-.721-.157-1.64-.37-2.538-.224-.946 0-1.932.542-2.683a1 1 0 0 1-.267-1.226l.074-.148a6 6 0 0 1 3.206-2.914l.35-.124-.235-.705a2.635 2.635 0 0 1 3.678-3.19M10.999 16H8.184a14.098 14.098 0 0 1-.293 1.994l.055.004L11 18a1 1 0 1 0 0-2m0-3H7.89c.138.65.253 1.345.294 2H11a1 1 0 1 0 0-2m1.285-9.24a.636.636 0 0 0-.912.668l.025.101.393 1.18a1.5 1.5 0 0 1-.813 1.845l-.135.053-.561.187a4 4 0 0 0-1.803 1.228l.183-.017L8.85 9h6.302c.126 0 .25.007.37.022a4 4 0 0 0-1.57-1.143l-.232-.085-.561-.187a1.5 1.5 0 0 1-.988-1.759l.04-.139.393-1.18a.635.635 0 0 0-.319-.769"/>
</G>
</Svg>);
};
Icon.displayName = 'FeederFill';
/**
* MingCute Icon: Feeder Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FeederFill = memo(Icon);