@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.42 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 2a4 4 0 0 1 4 4v1c0 1.224.535 2.31 1.156 3.334l.29.468.512.805c.423.675.818 1.375 1.012 2.15.262 1.046.275 2.157-.075 3.184l.08.296.94.543a1 1 0 0 1 .051 1.7l-3.315 2.19a1.81 1.81 0 0 1-2.657-.793 7 7 0 0 1-1.29.123h-.407q-.629-.001-1.25-.115a1.81 1.81 0 0 1-1.925 1.07l-3.93-.582a1 1 0 0 1-.672-1.563l.623-.89-.174-.984a1 1 0 0 1 .811-1.159l.259-.045c-.284-.968-.252-2.001-.01-2.974.199-.793.536-1.46.858-2.021l.268-.457C7.577 10.575 8 9.847 8 9V6a4 4 0 0 1 4-4M8.095 18.18a1 1 0 0 1-.444.29l-.13.032-.409.071.072.408a1 1 0 0 1-.05.528l-.055.122 1.958.29-.942-1.74Zm8.948-.425-.4.107-.133.026a1 1 0 0 1-.397-.03l-.126-.044-.119 1.976 1.652-1.09-.102-.088a1 1 0 0 1-.224-.33l-.044-.127zm-2.464-8.032a10 10 0 0 1-.979.827c-.386.29-.769.542-1.1.747l-.371.223c-.224.13-.45.258-.68.374a1 1 0 0 1-1.156-.187 8 8 0 0 1-.365-.4l-.206-.248-.114-.144c-.177.429-.392.81-.597 1.16l-.151.254c-.389.656-.712 1.201-.89 1.913-.09.362-.145.742-.13 1.116a1 1 0 0 1 1.178.345l.068.109 1.586 2.929c.419.139.869.226 1.34.251l.285.008h.406q.476 0 .924-.081l.293-.062.167-2.77a1 1 0 0 1 1.382-.864l.116.057.94.543.61-.164c.063-.471.01-.956-.105-1.417-.141-.564-.446-1.083-.765-1.58l-.317-.489c-.505-.788-1.005-1.585-1.369-2.45m-3.244-1.598a1 1 0 0 0-.445.055l-.104.045-.4.2.136.261a7.4 7.4 0 0 0 .7 1.047c.34-.201.76-.47 1.178-.783l.276-.214.262-.22-1.463-.366zM12 4a2 2 0 0 0-2 2v.385a3 3 0 0 1 1.96-.176l2.04.51V6a2 2 0 0 0-2-2"/>
</G>
</Svg>);
});
Icon.displayName = 'LinuxLine';
/**
* MingCute Icon: Linux Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const LinuxLine = Icon;