@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.49 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="M4.177 7.945a4.93 4.93 0 0 1-.067-.528c-.062-.885.14-1.81.819-2.488.97-.97 2.408-.968 3.64-.603.097.029.194.06.291.094l.175.063c1.363.514 1.55 1.86 1.55 1.86.34-1.018.028-2.037-1.25-2.742.104-.148.213-.289.327-.42C10.244 2.51 11.04 2 12 2c1.372 0 2.387 1.018 3 2.148.048.088.095.18.14.272l.078.168C15.82 5.916 15 7 15 7c.96-.48 1.46-1.421 1.055-2.823.178-.032.354-.054.528-.067.885-.062 1.81.14 2.488.819.97.97.968 2.408.603 3.64-.029.097-.06.194-.094.291l-.063.175c-.514 1.363-1.86 1.55-1.86 1.55 1.018.34 2.037.028 2.742-1.25.148.104.289.213.42.327C21.49 10.244 22 11.04 22 12c0 1.372-1.018 2.387-2.148 3-.088.048-.18.095-.272.14l-.168.078C18.084 15.82 17 15 17 15c.48.96 1.421 1.46 2.823 1.055.032.178.054.354.067.528.062.885-.14 1.81-.819 2.488-.97.97-2.408.968-3.64.603a6.541 6.541 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.742a4.905 4.905 0 0 1-.327.42C13.757 21.49 12.96 22 12 22c-1.372 0-2.387-1.018-3-2.148a6.618 6.618 0 0 1-.14-.272l-.078-.168C8.18 18.084 9 17 9 17c-.96.48-1.46 1.421-1.055 2.823a4.924 4.924 0 0 1-.528.067c-.885.062-1.81-.14-2.488-.819-.97-.97-.968-2.408-.603-3.64.029-.097.06-.194.094-.291l.063-.175c.514-1.363 1.86-1.55 1.86-1.55-1.018-.34-2.037-.028-2.742 1.25a4.928 4.928 0 0 1-.42-.327C2.51 13.756 2 12.96 2 12c0-1.372 1.018-2.387 2.148-3 .088-.048.18-.095.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 = memo(Icon);