@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.33 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="M4.177 7.945a5 5 0 0 1-.067-.528c-.062-.885.14-1.81.819-2.488.97-.97 2.408-.968 3.64-.603q.146.043.291.094l.175.063c1.363.514 1.55 1.86 1.55 1.86.34-1.018.028-2.037-1.25-2.742q.156-.223.327-.42C10.244 2.51 11.04 2 12 2c1.372 0 2.387 1.018 3 2.148q.072.133.14.272l.078.168C15.82 5.916 15 7 15 7c.96-.48 1.46-1.421 1.055-2.823a5 5 0 0 1 .528-.067c.885-.062 1.81.14 2.488.819.97.97.968 2.408.603 3.64q-.043.146-.094.291l-.063.175c-.514 1.363-1.86 1.55-1.86 1.55 1.018.34 2.037.028 2.742-1.25q.223.156.42.327C21.49 10.244 22 11.04 22 12c0 1.372-1.018 2.387-2.148 3q-.133.072-.272.14l-.168.078C18.084 15.82 17 15 17 15c.48.96 1.421 1.46 2.823 1.055q.048.267.067.528c.062.885-.14 1.81-.819 2.488-.97.97-2.408.968-3.64.603a7 7 0 0 1-.291-.094l-.175-.063c-1.363-.514-1.55-1.86-1.55-1.86-.34 1.018-.028 2.037 1.25 2.742a5 5 0 0 1-.327.42C13.757 21.49 12.96 22 12 22c-1.372 0-2.387-1.018-3-2.148a7 7 0 0 1-.14-.272l-.078-.168C8.18 18.084 9 17 9 17c-.96.48-1.46 1.421-1.055 2.823a5 5 0 0 1-.528.067c-.885.062-1.81-.14-2.488-.819-.97-.97-.968-2.408-.603-3.64q.043-.146.094-.291l.063-.175c.514-1.363 1.86-1.55 1.86-1.55-1.018-.34-2.037-.028-2.742 1.25a5 5 0 0 1-.42-.327C2.51 13.756 2 12.96 2 12c0-1.372 1.018-2.387 2.148-3q.133-.072.272-.14l.168-.078C5.916 8.18 7 9 7 9c-.48-.96-1.421-1.46-2.823-1.055M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/>
</G>
</Svg>);
});
Icon.displayName = 'Flower5Fill';
/**
* MingCute Icon: Flower 5 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Flower5Fill = Icon;