@nant-design/nant-icons
Version:
12 lines (8 loc) • 690 B
JSX
import React from 'react';
export const HardwareChipOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<rect x="80" y="80" width="352" height="352" rx="48" ry="48" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
<rect x="144" y="144" width="224" height="224" rx="16" ry="16" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
<path d="M256 80V48m80 32V48M176 80V48m80 416v-32m80 32v-32m-160 32v-32m256-176h32m-32 80h32m-32-160h32M48 256h32m-32 80h32M48 176h32" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};