16 lines
372 B
Vue
16 lines
372 B
Vue
<script setup lang="ts">
|
|
import BaseIcon from './BaseIcon.vue'
|
|
|
|
withDefaults(defineProps<{ color?: string }>(), {
|
|
color: 'var(--primary-color)'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<BaseIcon :color="color">
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
|
|
<path d="M21 21l-6 -6" />
|
|
</BaseIcon>
|
|
</template>
|