@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.47 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="M17.907 4.07a2.5 2.5 0 0 1 1.951 4.528l.094.59c.426 1.278.591 2.692.554 4.034-.043 1.548-.446 3.365-1.864 4.546a22 22 0 0 0-.814.716l-.475.449-.364.354c-.377.368-.755.737-1.16 1.075-.944.786-1.98 1.343-3.659 1.624a1 1 0 0 1-.338 0c-1.68-.28-2.716-.838-3.66-1.624a15 15 0 0 1-.78-.708l-.743-.721-.475-.45c-.249-.23-.517-.467-.814-.715-1.418-1.181-1.821-2.998-1.864-4.546-.041-1.47.234-2.902.492-3.82l.063-.218.117-.338.116-.31.144-.361c.291-.702.727-1.595 1.291-2.3.7-.875 2.092-2.428 4.19-3.19 2.134-.776 4.83-.675 7.998 1.386Zm-2.353 9.617-.03.113c-.106.462-.29.962-.593 1.339l-.134.148-.094.044c-.235.072-.562-.058-.776-.172l-.361-.207c-.35-.193-.793-.395-1.33-.442l-.24-.01c-.654 0-1.172.231-1.573.456l-.28.163c-.243.146-.666.352-.94.17-.335-.335-.545-.819-.673-1.287l-.05-.2a1 1 0 1 0-1.96.395c.187.927.598 1.835 1.273 2.51.52.52 1.215.63 1.703.626.496-.004 1.015-.125 1.386-.33l.128-.075.13-.081c.228-.145.468-.296.726-.337L12 16.5c.217 0 .423.09.62.202l.234.141q.142.091.279.166c.362.194.874.315 1.368.321.486.006 1.183-.1 1.706-.623.674-.674 1.085-1.58 1.276-2.506a1.01 1.01 0 0 0-.78-1.181 1 1 0 0 0-1.149.667M10 10a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2M7.236 6.287a1 1 0 1 0-.471 1.944l.503.118.58.128.313.064.663.126C9.848 8.851 10.99 9 12 9c1.334 0 2.891-.26 4.1-.513l.622-.135a1 1 0 0 0-.444-1.95C15.044 6.681 13.338 7 12 7c-1.208 0-2.707-.258-3.885-.512l-.607-.136zM18.5 6a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1"/>
</G>
</Svg>);
});
Icon.displayName = 'FatherChristmasFill';
/**
* MingCute Icon: Father Christmas Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FatherChristmasFill = Icon;