14 lines
573 B
XML
14 lines
573 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<!-- Background circle -->
|
|
<circle cx="16" cy="16" r="15" fill="#00539f"/>
|
|
<!-- Train body -->
|
|
<rect x="6" y="12" width="20" height="10" rx="2" fill="#fff"/>
|
|
<!-- Train windows -->
|
|
<rect x="9" y="14" width="4" height="4" rx="1" fill="#00539f"/>
|
|
<rect x="15" y="14" width="4" height="4" rx="1" fill="#00539f"/>
|
|
<!-- Train nose -->
|
|
<path d="M26 14 L30 16 L26 18 Z" fill="#fff"/>
|
|
<!-- Wheels -->
|
|
<circle cx="10" cy="23" r="2" fill="#fff"/>
|
|
<circle cx="22" cy="23" r="2" fill="#fff"/>
|
|
</svg>
|