device-monitoring-icon.vue 545 B

123456789101112
  1. <!-- 设备监测图标:传感器/仪表盘 -->
  2. <template>
  3. <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#4CAF50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  4. <!-- 仪表盘圆形 -->
  5. <circle cx="12" cy="12" r="10"></circle>
  6. <!-- 仪表盘指针 -->
  7. <polyline points="12 6 12 12 16 14"></polyline>
  8. <!-- 传感器信号 -->
  9. <path d="M4.5 9.5a7.5 7.5 0 0 1 15 0"></path>
  10. <path d="M7.5 12.5a4.5 4.5 0 0 1 9 0"></path>
  11. </svg>
  12. </template>