dootask/resources/assets/js/pages/manage/components/CollaborationSourceIcon.vue

35 lines
867 B
Vue

<template>
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true">
<path
d="M14 5H19V10"
stroke="currentColor"
stroke-width="1.8"
stroke-linecap="round"
stroke-linejoin="round"/>
<path
d="M19 5L11 13"
stroke="currentColor"
stroke-width="1.8"
stroke-linecap="round"
stroke-linejoin="round"/>
<path
d="M19 14V17A2 2 0 0 1 17 19H7A2 2 0 0 1 5 17V7A2 2 0 0 1 7 5H10"
stroke="currentColor"
stroke-width="1.8"
stroke-linecap="round"
stroke-linejoin="round"/>
</svg>
</template>
<script>
export default {
name: "CollaborationSourceIcon",
}
</script>