tiny-rdm/frontend/src/components/icons/AddLink.vue

30 lines
690 B
Vue
Raw Normal View History

2023-06-27 15:53:29 +08:00
<script setup>
const props = defineProps({
strokeWidth: {
type: [Number, String],
default: 3,
},
})
</script>
<template>
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2023-06-27 15:53:29 +08:00
<path
d="M24.0605 10L24.0239 38"
2023-06-27 15:53:29 +08:00
stroke="currentColor"
:stroke-width="strokeWidth"
2023-06-27 15:53:29 +08:00
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M10 24L38 24"
2023-06-27 15:53:29 +08:00
stroke="currentColor"
:stroke-width="strokeWidth"
2023-06-27 15:53:29 +08:00
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</template>
<style lang="scss" scoped></style>