20 lines
773 B
XML
20 lines
773 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
|
|
<!-- Background circle -->
|
|
<circle cx="50" cy="50" r="48" fill="#4A90E2" stroke="#2E5F8E" stroke-width="2"/>
|
|
|
|
<!-- Lock body -->
|
|
<rect x="35" y="45" width="30" height="25" rx="2" fill="#FFFFFF"/>
|
|
|
|
<!-- Lock shackle -->
|
|
<path d="M 40 45 L 40 35 Q 40 25 50 25 Q 60 25 60 35 L 60 45"
|
|
fill="none" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round"/>
|
|
|
|
<!-- Keyhole -->
|
|
<circle cx="50" cy="55" r="3" fill="#4A90E2"/>
|
|
<rect x="48.5" y="55" width="3" height="8" fill="#4A90E2"/>
|
|
|
|
<!-- ID letters -->
|
|
<text x="50" y="85" font-family="Arial, sans-serif" font-size="12" font-weight="bold"
|
|
fill="#FFFFFF" text-anchor="middle">ID</text>
|
|
</svg>
|