@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.67 kB
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11.174 22.555c.256.139.531.218.826.218s.59-.08.826-.178l7.848-4.572c.511-.297.826-.851.826-1.445V7.454c0-.593-.315-1.148-.826-1.444l-7.848-4.572a1.75 1.75 0 0 0-1.652 0L3.326 6.01A1.67 1.67 0 0 0 2.5 7.454v9.124c0 .594.315 1.148.826 1.445l2.065 1.188c1.003.494 1.358.494 1.81.494 1.475 0 2.32-.91 2.32-2.474V8.226a.24.24 0 0 0-.235-.237H8.283a.24.24 0 0 0-.236.237v9.005c0 .693-.728 1.386-1.889.792l-2.143-1.247c-.08-.04-.118-.138-.118-.218V7.435c0-.08.039-.179.118-.218l7.848-4.552c.058-.04.157-.04.235 0l7.849 4.552c.078.04.118.119.118.218v9.123c0 .1-.04.178-.118.218l-7.849 4.572c-.059.04-.157.04-.236 0L9.857 20.14c-.059-.04-.138-.06-.197-.02-.55.317-.649.356-1.18.534-.118.04-.314.119.079.337zm-.885-8.985c0 1.346.708 2.929 4.15 2.929 2.478 0 3.914-.99 3.914-2.731 0-1.702-1.141-2.158-3.56-2.474-2.44-.317-2.695-.495-2.695-1.069 0-.475.217-1.108 2.026-1.108 1.613 0 2.222.356 2.459 1.444a.23.23 0 0 0 .216.179h1.042c.06 0 .118-.04.158-.08a.32.32 0 0 0 .059-.178c-.157-1.9-1.396-2.77-3.914-2.77-2.242 0-3.58.95-3.58 2.553 0 1.721 1.338 2.196 3.481 2.414 2.577.258 2.774.634 2.774 1.148 0 .89-.708 1.267-2.36 1.267-2.085 0-2.538-.515-2.695-1.564 0-.118-.098-.198-.216-.198h-1.023a.24.24 0 0 0-.236.238"/>
</Svg>);
});
Icon.displayName = 'NodejsFill';
/**
* Remix Icon: Nodejs Fill
* @see {@link https://remixicon.com/icon/nodejs-fill Remix Icon Docs}
*/
export const NodejsFill = Icon;