@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 3.68 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">
<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="m13.287 2.69.127.117 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-.127 7.778-7.779a2 2 0 0 1 2.567-.22l.134.104Zm-.901 5.065c-.255.296-.415.558-.48.985-.063.427.065.853.224 1.05.14.173.329.27.545.247l.094-.017c.094-.024.085.027.03.12l-.111.167c-.109.158-.244.356-.302.534-.128.393.064.656.32.656a.8.8 0 0 0 .199-.03l.084-.027c.106-.034.177-.057.195.024.007.03-.072.107-.197.206l-.17.128-.303.213-.08.05-.194.104c-.252.13-.542.28-.63.495-.133.33.08.65.572.892l.14.064.133.048-.007.004-.045.02a.64.64 0 0 0-.24.238c-.297.457-.043.744.123.836l.036.017c.128.053.01.105-.192.022a2.8 2.8 0 0 1-.377-.61l-.06-.134c-.086-.19-.155-.342-.265-.427-.256-.197-.464.065-.48.23l-.02.164c-.017.183.004.47.308.952.415.656 1.061 1.068 1.565 1.379s.99.08 1.31-.296l.437-.506.238-.288.263-.337c.316-.42.667-.936.994-1.543.49-.908.036-1.285-.6-1.452l-.207-.046-.213-.035-.214-.025-.411-.031c-.327-.02-.748.04-1.163.138l.356-.149.188-.087q.122-.06.172-.103c.223-.197.255-.59-.16-.787l-.227-.113-.154-.085-.258-.163c-.16-.099-.16-.394.192-.558.11-.052.246-.076.388-.094l.145-.016c.27-.029.546-.058.712-.219.286-.276.384-.787-.191-1.05-.225-.103-.47-.11-.683-.094l-.393.042c-.114.008-.18-.005-.17-.08l.019-.095.025-.102c.05-.196.106-.412-.012-.557-.16-.197-.543-.164-.798.131m-2.14 2.626c-.223.014-.6.296-.963.616l-.268.242-.653.63-.064.055c-.035.021-.047.007-.049-.022l.008-.156c-.002-.037-.015-.062-.055-.052-.127.033-.415.394-.447.624s.08.485.416.689c.298.181.57.144.83-.051l.144-.125.135-.124.105-.09.104-.079c.15-.104.263-.126.182.14a3 3 0 0 1-.215.482l-.163.302-.488.876c-.16.299-.294.574-.347.77-.16.59.607.918.862.557l.151-.214.077-.102c.121-.15.203-.183.217.093l.002.092c0 .558.192.985.543.952s.447-.263.48-.558l.013-.165.023-.528.059-1.703c.012-.318.037-.59.067-.826L11 12.38l.073-.402c.057-.293.096-.5.067-.678-.063-.394-.383-.952-.894-.919m3.326 4.656-.068.07c-.373.301-.613.374-.996.068.35.014.687-.203.852-.333l.088-.076c.04-.039.069.009.09.093l.024.114zm-.47-1.072c.076.121-.032.326-.242.457-.209.13-.44.138-.516.017s.032-.326.242-.457c.21-.13.44-.138.516-.017m1.455-1.09c.446.046.473.243.394.475l-.048.119-.09.194c-.092.197-.357.52-.652.827l-.11-.144c-.134-.172-.17-.22-.148-.307l.016-.047a.82.82 0 0 0-.128-.821c-.121-.156-.22-.06-.303.08l-.06.112-.085.17c-.027.049-.051.08-.074.075l-.095-.019a1.4 1.4 0 0 0-.558.017c.092-.036.178-.09.261-.15l.124-.092c.099-.076.198-.152.305-.207.336-.173.698-.338 1.252-.281ZM9.618 9.24l.054.025c.267.103.125.392-.089.688l-.122.161-.263.329a1 1 0 0 0-.132.2q.14-.062.306-.172l.115-.075c.287-.188.65-.426 1.167-.6l.232-.071c.958-.263.639-1.576-.767-1.707-1.354-.127-.987.967-.501 1.222"/>
</G>
</Svg>);
});
Icon.displayName = 'BlessingFill';
/**
* MingCute Icon: Blessing Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const BlessingFill = Icon;