@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.81 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="M13.684 4.051a1 1 0 0 1 .632 1.897 2 2 0 0 0-.232.095q.097.129.178.27l.076.143 4.278-.95A2.78 2.78 0 0 1 21.356 10a2.78 2.78 0 0 1-2.571 4.527l-.169-.032-5.252-1.168a1.5 1.5 0 0 1-.257.395l-.107.105V19a1 1 0 0 1-1.993.116L11 19v-5.172a1.4 1.4 0 0 1-.29-.356l-.074-.145-5.252 1.168A2.78 2.78 0 0 1 2.644 10a2.78 2.78 0 0 1 2.571-4.527l.169.032 4.278.95q.108-.218.254-.412a2 2 0 0 0-.232-.095 1 1 0 0 1 .632-1.897 4 4 0 0 1 1.546.952L12 5l.138.003a4 4 0 0 1 1.546-.952M19.22 11h-5.307l-.085.382 5.222 1.16a.78.78 0 1 0 .275-1.535zm-9.133 0H4.78a.78.78 0 1 0 .073 1.557l.097-.015 5.222-1.16zM12 7c-.354 0-.625.3-.603.641l.013.094.59 2.655.59-2.655A.604.604 0 0 0 12 7m7.05.457-4.576 1.017-.116.526h4.861a.78.78 0 1 0-.169-1.543M4 8.22c0 .431.35.78.78.78h4.862l-.117-.525L4.95 7.457A.78.78 0 0 0 4 8.22"/>
</G>
</Svg>);
});
Icon.displayName = 'DragonflyLine';
/**
* MingCute Icon: Dragonfly Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const DragonflyLine = Icon;