@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 769 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Robot2Line = /* @__PURE__ */ memo(function Robot2Line(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M13.5 2c0 .444-.193.843-.5 1.118V5h5a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h5V3.118A1.5 1.5 0 1 1 13.5 2M6 7a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6m-4 3H0v6h2zm20 0h2v6h-2zM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m6 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/>
</Svg>);
});
/**
* Remix Icon: Robot 2 Line
* @see {@link https://remixicon.com/icon/robot-2-line Remix Icon Docs}
*/
export { Robot2Line };