@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.71 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="m14.426 2.76.168.137q.495.42 1.12.517l.181.022a4 4 0 0 1 3.648 3.468l.021.2q.053.648.426 1.158l.113.143a4 4 0 0 1 0 5.19q-.42.493-.518 1.119l-.02.18a4 4 0 0 1-3.469 3.649l-.2.021a2.15 2.15 0 0 0-1.253.497l-.13.11c.044.275.192.47.377.623.11.092.23.161.317.206l.12.055a1 1 0 0 1 .622 1.261 1.01 1.01 0 0 1-1.267.632 3.4 3.4 0 0 1-1.072-.617 3.1 3.1 0 0 1-.942-1.329 4 4 0 0 1-1.336 0 3.1 3.1 0 0 1-.942 1.329c-.327.272-.686.453-1.074.618a1 1 0 0 1-.75-1.85l.17-.071c.083-.04.236-.12.374-.234.185-.154.334-.348.377-.624l-.13-.109a2.1 2.1 0 0 0-1.08-.478l-.172-.019a4 4 0 0 1-3.648-3.468l-.021-.201a2.2 2.2 0 0 0-.426-1.157l-.113-.144a4 4 0 0 1 0-5.189q.42-.494.518-1.119l.02-.181a4 4 0 0 1 3.469-3.648l.201-.021a2.23 2.23 0 0 0 1.157-.426l.144-.113a4 4 0 0 1 5.02-.136Zm1.817 11.068a1 1 0 0 0-1.498 1.32l.084.095.964.964a1 1 0 0 0 1.497-1.32l-.083-.094zm-7.071 0a1 1 0 0 0-1.32-.083l-.095.083-.964.965a1 1 0 0 0 1.32 1.497l.094-.083.965-.965a1 1 0 0 0 0-1.414m3.83-5.985-.115-.087a1.37 1.37 0 0 0-1.661-.087l-.113.087c-.183.156-.403.26-.637.304l-.142.019c-.625.05-1.13.516-1.238 1.123l-.017.132c-.02.239-.1.468-.235.665l-.088.113a1.37 1.37 0 0 0-.086 1.662l.086.113c.156.183.26.403.304.637l.019.142c.05.625.516 1.13 1.123 1.238l.132.017c.24.02.468.1.665.235l.114.088a1.37 1.37 0 0 0 1.661.086l.114-.086c.182-.156.402-.26.636-.304l.142-.019a1.37 1.37 0 0 0 1.238-1.123l.017-.132c.02-.24.1-.468.236-.665l.087-.114a1.37 1.37 0 0 0 .087-1.662l-.087-.113a1.37 1.37 0 0 1-.304-.636l-.019-.142a1.37 1.37 0 0 0-1.123-1.238l-.132-.017c-.239-.02-.468-.1-.665-.236Zm2.791-2.05-.964.964a1 1 0 1 0 1.414 1.414l.964-.964a1 1 0 0 0-1.414-1.414m-7.586 0a1 1 0 0 0-1.497 1.32l.083.094.964.964a1 1 0 0 0 1.498-1.32l-.083-.094z"/>
</G>
</Svg>);
});
Icon.displayName = 'WreathFill';
/**
* MingCute Icon: Wreath Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const WreathFill = Icon;