agri-knowledge-icon.vue 558 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. <path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
  6. <path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
  7. <!-- 灯泡 -->
  8. <circle cx="12" cy="9" r="3"></circle>
  9. <line x1="12" y1="12" x2="12" y2="14"></line>
  10. <path d="M10 14h4"></path>
  11. </svg>
  12. </template>