mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-04-19 11:08:04 +08:00
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
<script setup>
|
|
const props = defineProps({
|
|
strokeWidth: {
|
|
type: [Number, String],
|
|
default: 3,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M21 38C30.3888 38 38 30.3888 38 21C38 11.6112 30.3888 4 21 4C11.6112 4 4 11.6112 4 21C4 30.3888 11.6112 38 21 38Z"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M26.657 14.3431C25.2093 12.8954 23.2093 12 21.0001 12C18.791 12 16.791 12.8954 15.3433 14.3431"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M33.2216 33.2217L41.7069 41.707"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|