@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.49 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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.757.31.132.658.2 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.402 1.402 0 0 1-.091-.457c.209.098.424.223.621.376.256.198.605.261.913.166.45-.138.95-.217 1.479-.217.529 0 1.028.079 1.477.217.309.095.657.031.913-.166.197-.153.412-.278.62-.376-.008.171-.037.329-.09.456-.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.745.745 0 0 1 .236.542l-.029 2.739a1 1 0 0 0 2 .02l.029-2.745v-.01c0-.239-.03-.47-.088-.691 1.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.054 1.054 0 0 0-.414-.377c-.458-.23-1.027-.054-1.482.101a5.77 5.77 0 0 0-1.17.553A7.119 7.119 0 0 0 12 6.588c-.549 0-1.082.062-1.588.177a5.771 5.771 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.813 3.813 0 0 0-.718 2.205c0 1.845 1.315 3.262 3.005 3.976-.057.219-.088.448-.088.685l-.008.784c-.22 0-.37-.038-.476-.083a1.106 1.106 0 0 1-.419-.336c-.096-.116-.182-.238-.268-.361-.064-.093-.129-.185-.198-.274-.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 = memo(Icon);