UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.37 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="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M6.987 14.789a.75.75 0 0 0-.474 1.423c.183.058.345.328.487.566.07.115.134.223.195.296.227.273.537.567.985.757q.464.198 1.046.202l-.005.457a1 1 0 0 0 2 .02l.029-2.745v-.01c0-.215.09-.408.236-.546.604-.57.296-1.561-.493-1.719-1.74-.347-2.66-1.446-2.66-2.402 0-.447.181-.896.556-1.305.264-.287.337-.702.189-1.063a1.4 1.4 0 0 1-.091-.457c.209.098.424.223.621.376.256.198.605.261.913.166.45-.138.95-.217 1.479-.217s1.028.079 1.477.217c.309.095.657.031.913-.166.197-.153.412-.278.62-.376a1.4 1.4 0 0 1-.09.456c-.148.362-.074.776.19 1.063.375.41.556.859.556 1.306 0 .956-.92 2.055-2.659 2.402-.789.158-1.097 1.15-.493 1.719a.75.75 0 0 1 .236.542l-.029 2.739a1 1 0 0 0 2 .02l.029-2.745v-.01q0-.359-.088-.691c1.69-.714 3.004-2.131 3.004-3.976 0-.82-.272-1.572-.72-2.207.091-.471.076-.924.034-1.27-.046-.377-.121-.797-.329-1.123a1.05 1.05 0 0 0-.414-.377c-.458-.23-1.027-.054-1.482.101a5.8 5.8 0 0 0-1.17.553A7 7 0 0 0 12 6.588c-.549 0-1.082.062-1.588.177a5.8 5.8 0 0 0-1.17-.553c-.454-.155-1.024-.33-1.481-.101-.17.085-.313.217-.414.377-.208.326-.283.747-.33 1.124-.041.347-.057.8.034 1.271a3.8 3.8 0 0 0-.718 2.205c0 1.845 1.315 3.262 3.005 3.976a2.7 2.7 0 0 0-.088.685l-.008.784c-.22 0-.37-.038-.476-.083a1.1 1.1 0 0 1-.419-.336 6 6 0 0 1-.268-.361 6 6 0 0 0-.198-.274c-.179-.232-.457-.545-.894-.69"/> </G> </Svg>); }); Icon.displayName = 'Github2Fill'; /** * MingCute Icon: Github 2 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Github2Fill = Icon;