@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.73 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="M18.664 15.058a1 1 0 0 1 .78 1.838l-.108.046-4.363 1.558 4.363 1.558a1 1 0 0 1-.56 1.917l-.112-.033L12 19.562l-6.664 2.38a1 1 0 0 1-.78-1.838l.108-.046L9.027 18.5l-4.363-1.558a1 1 0 0 1 .56-1.917l.112.033L12 17.438zM11.23 2.892l.707-.46.22-.133c.49-.277 1.03-.46 1.497-.054.28.242.373.583.323.93l-.04.205-.015.14q-.01.128.008.307c.086.771.611 1.322 1.155 1.821l.457.416.342.323c.812.792 1.708 1.86 2.085 3.37.454 1.814.006 3.441-1.182 4.587C15.641 15.452 13.921 16 12 16c-3.169 0-6-2.052-6-5.5 0-2.696 1.782-4.825 3.342-6.19a18 18 0 0 1 1.89-1.418m.99 6.372L12 9l-.221.264-.237.301-.187.252-.2.284C10.609 10.9 10 11.997 10 12.917c0 1.15.896 2.083 2 2.083s2-.933 2-2.083c0-.92-.609-2.017-1.155-2.816l-.2-.284-.187-.252z"/>
</G>
</Svg>);
});
Icon.displayName = 'CampfireFill';
/**
* MingCute Icon: Campfire Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const CampfireFill = Icon;