Here’s a simple SVG code for an icon of a computer image:


<svg width="40" height="40" viewBox="0 0 40 40">
<rect x="5" y="5" width="30" height="30" rx="2" ry="2" fill="#fff" stroke="#000" stroke-width="1"/>
<rect x="10" y="10" width="20" height="10" fill="#000"/>
<circle cx="15" cy="25" r="2" fill="#000"/>
<circle cx="25" cy="25" r="2" fill="#000"/>
</svg>

This will create an SVG image that is 40 pixels wide and 40 pixels tall, with a white rectangle representing the computer body and two black circles representing the computer’s monitor. The viewBox attribute allows the SVG to scale to fit different sizes while maintaining the same aspect ratio.

The Image