Files
----/前端源码/uni-app/components/icons/ProfileIcon.vue

30 lines
727 B
Vue

<template>
<svg :width="size" :height="size" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"
:class="className || ''">
<circle cx="12" cy="7" r="4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M6 21V19C6 15.6863 8.68629 13 12 13C15.3137 13 18 15.6863 18 19V21" stroke="currentColor"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</template>
<script setup lang="ts">
withDefaults(
defineProps<{
size?: number | string;
className?: string;
}>(),
{
size: 24,
className: "",
}
);
</script>
<style scoped>
svg {
display: inline-block;
vertical-align: middle;
}
</style>