@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.99 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.5 3c.82 0 1.49.654 1.506 1.476l.024.836.027.675.057 1.08.039.611.022.322h2.259c.906 0 1.555.773 1.53 1.595l-.005.45.005.28.01.315.02.351.027.386.039.42.05.456.064.488.079.523.045.273.103.572.121.604c.175.827.402 1.74.696 2.735l.233.76q.123.39.26.792H21a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h1.257c.685-2.358 1.113-4.697 1.377-6.801l.097-.829.081-.8.035-.389.06-.752.046-.717.035-.677.025-.635.016-.59.01-.542v-.86L6.027 4.7l-.004-.139A1.51 1.51 0 0 1 7.533 3zm-.482 2H8.034l.006.542-.001.668-.008.541-.015.59-.023.634-.033.676-.02.354-.05.734-.064.77-.037.396-.084.816a48 48 0 0 1-1.241 6.8L6.335 19h7.4l-.191-.876-.09-.436-.17-.866-.155-.857-.142-.846-.13-.832-.118-.816-.107-.797-.095-.778-.125-1.122-.072-.716-.062-.687-.101-1.28-.073-1.14-.04-.75-.04-1.03zm3.941 5h-1.615l.053.528.121 1.097c.265 2.249.665 4.8 1.269 7.375h1.817q-.406-1.266-.691-2.388l-.18-.73-.155-.697-.134-.663-.114-.629-.05-.3-.087-.577a23 23 0 0 1-.07-.54l-.056-.506-.042-.468-.03-.432-.02-.394-.015-.521z"/>
</G>
</Svg>);
});
Icon.displayName = 'FactoryLine';
/**
* MingCute Icon: Factory Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FactoryLine = Icon;