profile-icon.vue 508 B

1234567891011
  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="8" r="5"></circle>
  6. <!-- 用户身体 -->
  7. <path d="M20 21v-2a7 7 0 0 0-14 0v2"></path>
  8. <!-- 框架 -->
  9. <rect x="3" y="3" width="18" height="18" rx="2" ry="2" style="stroke-opacity: 0.3;"></rect>
  10. </svg>
  11. </template>