home-icon.vue 499 B

12345678910
  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. <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
  5. <polyline points="9 22 9 12 15 12 15 22"></polyline>
  6. <!-- 农田元素 -->
  7. <line x1="3" y1="14" x2="6" y2="14"></line>
  8. <line x1="18" y1="14" x2="21" y2="14"></line>
  9. </svg>
  10. </template>