UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.74 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="M6.778 2.025a1 1 0 0 1 .777.143c1.191.794 2.842 1.284 4.718 1.558 1.862.273 3.86.322 5.685.296a2.01 2.01 0 0 1 2.036 1.854l.006.153V8.97a2.01 2.01 0 0 1-2.042 2.007 56 56 0 0 0-1.296-.004l-.662.01V21a1 1 0 0 1-.883.993L15 22h-3a1 1 0 0 1-.993-.883L11 21v-9.498c-1.348.291-2.532.721-3.445 1.33a1 1 0 0 1-.777.143c-.391-.09-.559-.29-.694-.548l-.147-.314-.057-.126-.126-.302a10 10 0 0 1-.206-.573A11.8 11.8 0 0 1 5 7.5c0-1.526.271-2.755.548-3.612.093-.286.186-.531.27-.732l.119-.27c.179-.386.389-.758.84-.861ZM14 11.083q-.503.039-1 .096V20h1zM7.478 4.422A9.7 9.7 0 0 0 7 7.5c0 1.338.247 2.39.478 3.078 1.354-.662 2.926-1.052 4.505-1.283C13.998 9 16.131 8.973 18 9l.003-.364L18 6c-1.87.027-4.001 0-6.017-.295-1.58-.23-3.151-.621-4.505-1.283"/> </G> </Svg>); }); Icon.displayName = 'AxeLine'; /** * MingCute Icon: Axe Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const AxeLine = Icon;