@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.01 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="M12 10a2 2 0 0 1 1.995 1.85L14 12v1h5a2 2 0 0 1 1.995 1.85L21 15v5a2 2 0 0 1-1.85 1.995L19 22H6a2 2 0 0 1-1.995-1.85L4 20v-8a2 2 0 0 1 1.85-1.995L6 10zm7 5h-5v5h5zm-7-3H6v8h6zm4.664-5.91c.615.282 1.181.787 1.593 1.359.41.57.743 1.312.743 2.107C19 11.123 17.613 12 16.427 12c-.935 0-1.756-.65-2.146-1.4a2.4 2.4 0 0 1-.262-1.416c.06-.466.263-.906.597-1.29l.15-.16c.226-.224.387-.436.462-.726l.03-.152a1 1 0 0 1 1.406-.766m-.022 2.538a5 5 0 0 1-.47.528c-.153.152-.22.322-.117.521a.7.7 0 0 0 .294.3l.078.023.096-.007a.7.7 0 0 0 .336-.148.36.36 0 0 0 .141-.29c0-.246-.113-.582-.358-.927M9.058 2.081c.753.322 1.468.914 1.996 1.601.524.683.946 1.569.946 2.512C12 8.034 10.285 9 8.903 9 7.84 9 6.842 8.296 6.35 7.409a2.66 2.66 0 0 1-.326-1.655c.085-.622.401-1.199.922-1.682.34-.314.588-.624.696-1.057l.034-.169a1 1 0 0 1 1.382-.765m.1 2.467c-.24.39-.542.704-.852.99-.271.253-.396.561-.208.9.202.364.59.562.805.562.309 0 .61-.108.816-.274.195-.156.281-.335.281-.532 0-.361-.175-.828-.532-1.294a4 4 0 0 0-.31-.352"/>
</G>
</Svg>);
});
Icon.displayName = 'CandlesLine';
/**
* MingCute Icon: Candles Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const CandlesLine = Icon;