Spaces:
Running
Running
File size: 1,313 Bytes
ad05511 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<!-- 背景 -->
<rect width="32" height="32" rx="6" fill="#28a745"/>
<!-- 简化的肌肉人物图标 - 白色 -->
<g transform="translate(16, 16)">
<!-- 头部 -->
<circle cx="0" cy="-6" r="3" fill="white"/>
<!-- 身体 -->
<rect x="-2" y="-2" width="4" height="6" rx="1" fill="white"/>
<!-- 右臂 - 展示萎缩肌肉 -->
<ellipse cx="3.5" cy="-1" rx="1" ry="2.5" fill="white" transform="rotate(10)"/>
<ellipse cx="4.5" cy="1" rx="0.8" ry="2" fill="white" transform="rotate(50)"/>
<circle cx="5" cy="-1.5" r="1.2" fill="white"/>
<!-- 萎缩的肌肉 - 用红色表示 -->
<ellipse cx="4.5" cy="-3" rx="0.8" ry="1.2" fill="#dc3545" opacity="0.8"/>
<!-- 左臂 -->
<ellipse cx="-3" cy="0" rx="0.8" ry="2.5" fill="white" transform="rotate(-10)"/>
<circle cx="-4" cy="2" r="1" fill="white"/>
<!-- 监测设备 -->
<rect x="1" y="2" width="4" height="2" rx="0.5" fill="#17a2b8"/>
<!-- 警告标识 -->
<circle cx="-4" cy="-4" r="1.2" fill="#ffc107"/>
<path d="M-4.5 -4.2 L-3.5 -4.2 L-4 -3.5 Z" fill="white"/>
</g>
</svg>
|