UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.1 kB
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="M19.942 15.664a1 1 0 0 1-.606 1.278L14.973 18.5l4.363 1.558a1 1 0 1 1-.672 1.884L12 19.562l-6.664 2.38a1 1 0 1 1-.672-1.884L9.027 18.5l-4.363-1.558a1 1 0 1 1 .672-1.884L12 17.438l6.664-2.38a1 1 0 0 1 1.278.606m-7.39-13.558a1 1 0 0 1 1.433 1.065l-.041.178-.008.05-.013.137q-.009.124.008.291c.04.353.198.888.776 1.466l.155.15.68.62.343.324c.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.19.8-.7 1.597-1.248 2.19-1.619.332-.207.67-.41 1.02-.585m-.388 8.77L12 10.632l-.164.246c-.492.76-.836 1.523-.836 2.04 0 .637.486 1.083 1 1.083s1-.446 1-1.083c0-.517-.344-1.28-.836-2.04m-.085-6.154c-.435.296-.929.663-1.42 1.093C9.219 7.075 8 8.696 8 10.5c0 .979.366 1.813 1 2.42 0-1.071.562-2.179 1.046-2.956l.425-.668.189-.279C11.024 8.503 11.484 8 12 8c.533 0 .984.496 1.342 1.01l.186.28.315.5c.506.78 1.157 1.977 1.157 3.127q0 .163-.016.322.231-.157.415-.333c.625-.604.928-1.477.63-2.664-.237-.95-.723-1.592-1.315-2.19l-.333-.322-.349-.323c-.241-.222-.49-.45-.74-.7-.668-.669-1.031-1.36-1.213-1.985"/> </G> </Svg>); }); Icon.displayName = 'CampfireLine'; /** * MingCute Icon: Campfire Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const CampfireLine = Icon;