@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.06 kB
JavaScript
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="M12 2c.83 0 1.566.577 2.105 1.156.405.434.791.981 1.109 1.61a7.1 7.1 0 0 1 2.945-.786c1.074-.05 1.772.808 1.836 1.686l.005.132V8a8 8 0 0 1-6.75 7.903l-.25.035v3.07c1.076-.669 2.662-1.454 4.758-1.978a1 1 0 1 1 .485 1.94 14.9 14.9 0 0 0-3.87 1.546l-.345.208-.158.1-.286.192-.246.175-.205.156-.166.133-.174.148c-.233.208-.464.372-.793.372-.279 0-.488-.118-.688-.281l-.27-.231-.163-.132-.205-.155-.244-.176-.138-.093-.305-.199-.168-.103-.367-.213a15 15 0 0 0-3.695-1.447 1 1 0 1 1 .486-1.94c1.955.489 3.467 1.206 4.535 1.843l.222.135v-3.07A8 8 0 0 1 4.004 8.26L4 8V5.784c0-.91.692-1.85 1.807-1.82.734.02 1.854.168 3 .763a7 7 0 0 1 1.088-1.571C10.435 2.577 11.169 2 12 2M6 5.976V8a6 6 0 0 0 5 5.917c-.015-3.781-1.053-5.705-2.111-6.7C7.98 6.362 6.934 6.074 6.16 5.99L6 5.977Zm12 .02c-.788.075-1.922.36-2.896 1.287-1.06 1.007-2.089 2.922-2.104 6.634a6 6 0 0 0 4.995-5.67L18 8zM12 4.01c-.25.104-.461.315-.642.509-.328.351-.66.84-.914 1.42.608.618 1.145 1.402 1.568 2.386.424-.963.959-1.733 1.562-2.344a5.1 5.1 0 0 0-.932-1.462c-.18-.194-.392-.405-.642-.509"/>
</G>
</Svg>);
});
Icon.displayName = 'Flower4Line';
/**
* MingCute Icon: Flower 4 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Flower4Line = Icon;