21 lines
908 B
PHP
21 lines
908 B
PHP
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 55" {{ $attributes }}>
|
|
<!-- Libra Scales of Justice Icon -->
|
|
<g fill="currentColor">
|
|
<!-- Center pillar -->
|
|
<rect x="22" y="15" width="6" height="35" rx="1"/>
|
|
<!-- Top beam -->
|
|
<rect x="5" y="10" width="40" height="5" rx="2"/>
|
|
<!-- Left scale pan -->
|
|
<path d="M5 18 L15 18 L12 28 Q10 32 8 28 L5 18 Z"/>
|
|
<ellipse cx="10" cy="28" rx="8" ry="3"/>
|
|
<!-- Right scale pan -->
|
|
<path d="M35 18 L45 18 L42 28 Q40 32 38 28 L35 18 Z"/>
|
|
<ellipse cx="40" cy="28" rx="8" ry="3"/>
|
|
<!-- Chains -->
|
|
<line x1="10" y1="12" x2="10" y2="18" stroke="currentColor" stroke-width="1.5"/>
|
|
<line x1="40" y1="12" x2="40" y2="18" stroke="currentColor" stroke-width="1.5"/>
|
|
<!-- Base -->
|
|
<rect x="15" y="48" width="20" height="4" rx="2"/>
|
|
</g>
|
|
</svg>
|