14 lines
638 B
XML
14 lines
638 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<rect width="32" height="32" rx="5" fill="#1e1e2e"/>
|
|
<!-- oscilloscope grid lines -->
|
|
<line x1="2" y1="16" x2="30" y2="16" stroke="#313244" stroke-width="0.8"/>
|
|
<line x1="16" y1="3" x2="16" y2="29" stroke="#313244" stroke-width="0.8"/>
|
|
<!-- waveform -->
|
|
<polyline points="2,16 7,16 9,7 12,25 16,7 20,25 23,16 25,16 27,11 30,11"
|
|
fill="none" stroke="#89b4fa" stroke-width="2"
|
|
stroke-linejoin="round" stroke-linecap="round"/>
|
|
<!-- scope bezel -->
|
|
<rect x="1" y="1" width="30" height="30" rx="4"
|
|
fill="none" stroke="#45475a" stroke-width="1.5"/>
|
|
</svg>
|