@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 3.79 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="M10.586 2.807a2 2 0 0 1 2.701-.116l.127.116 7.778 7.779a2 2 0 0 1 .117 2.7l-.117.128-7.778 7.778a2 2 0 0 1-2.7.117l-.128-.117-7.778-7.778a2 2 0 0 1-.117-2.701l.117-.127zM12 4.222 4.222 12 12 19.778 19.778 12zm.386 3.533c.255-.295.639-.328.798-.13.084.103.08.242.052.385l-.04.17q-.029.106-.044.199c-.01.074.056.087.17.079l.393-.042c.213-.016.458-.009.683.094.575.263.477.774.191 1.05-.138.135-.353.177-.577.204l-.135.015c-.194.02-.386.041-.533.11-.351.164-.351.46-.192.558l.2.128.127.075.188.098.124.06c.415.197.383.59.16.787a1 1 0 0 1-.172.103l-.188.087-.356.15c.415-.1.836-.158 1.163-.139l.411.031.214.025.213.035.206.046c.637.167 1.092.544.601 1.452a12 12 0 0 1-.994 1.543l-.263.337-.238.288-.438.506c-.32.377-.805.607-1.309.296s-1.15-.722-1.565-1.379c-.304-.482-.325-.769-.308-.952l.02-.164c.016-.165.224-.426.48-.23.088.068.15.18.214.318l.05.11c.097.213.215.474.438.743.18.074.293.04.226-.004l-.034-.018c-.16-.065-.479-.36-.16-.853a.7.7 0 0 1 .205-.217l.088-.045-.005-.003-.128-.045-.14-.063c-.492-.243-.706-.562-.571-.894.074-.184.298-.32.52-.437l.11-.057c.103-.053.2-.104.273-.153l.304-.214.17-.128c.124-.099.203-.175.196-.206-.015-.065-.063-.063-.136-.042l-.06.018a.9.9 0 0 1-.283.057c-.255 0-.447-.262-.32-.656a1.8 1.8 0 0 1 .218-.409l.195-.292c.046-.078.06-.126.01-.126l-.039.006c-.255.066-.479-.033-.639-.23s-.287-.623-.223-1.05.223-.69.479-.985m-2.14 2.626c.511-.033.83.525.894.92.018.106.01.223-.01.363l-.057.314-.048.257-.025.145-.048.326a9 9 0 0 0-.056.596l-.02.483-.061 1.747-.019.322-.007.074c-.032.295-.128.525-.479.558-.324.03-.512-.331-.54-.826l-.003-.126c0-.34-.07-.35-.184-.226l-.072.089-.19.268c-.256.361-1.023.033-.863-.557.053-.196.186-.471.347-.77l.488-.876.163-.302c.1-.191.178-.358.215-.481.072-.237-.009-.246-.133-.172l-.1.068-.158.132-.183.169c-.288.262-.59.335-.926.13-.337-.203-.448-.459-.416-.688.032-.23.32-.591.447-.624.04-.01.053.015.055.052l-.004.083c-.007.069-.013.13.045.095l.064-.055.526-.51.26-.241c.402-.366.847-.72 1.098-.737m3.225 4.372-.023.013-.088.076c-.165.13-.502.347-.852.333.351.28.582.243.905.003l.09-.07.069-.07-.01-.065-.023-.114c-.018-.067-.04-.111-.068-.106m-.369-.788c-.075-.121-.307-.114-.516.017s-.318.336-.242.457.307.114.517-.017c.209-.131.317-.336.241-.457m1.455-1.09c-.553-.056-.915.109-1.25.282q-.107.057-.207.132l-.099.075a1.6 1.6 0 0 1-.385.242c.179-.048.36-.042.488-.027l.125.02.037.008c.024.005.05-.025.077-.073l.114-.228c.089-.168.198-.31.334-.135a.82.82 0 0 1 .149.76l-.021.06c-.034.088-.032.13.03.219l.212.28c.295-.307.56-.63.652-.827l.09-.194c.124-.281.174-.54-.346-.593ZM9.976 8.01l.143.009c1.354.126 1.7 1.348.868 1.673l-.101.034a4.4 4.4 0 0 0-1.271.588l-.128.083c-.16.105-.296.194-.421.248a1 1 0 0 1 .132-.201l.325-.409.116-.161c.163-.24.256-.465.096-.575l-.063-.033c-.492-.19-.926-1.295.304-1.256"/>
</G>
</Svg>);
});
Icon.displayName = 'BlessingLine';
/**
* MingCute Icon: Blessing Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const BlessingLine = Icon;