30 lines
678 B
Vue
30 lines
678 B
Vue
<template>
|
|
<svg :width="size" :height="size" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
:class="className || ''">
|
|
<path d="m21 21-4.34-4.34" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<circle cx="11" cy="11" r="8" 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>
|