27 lines
838 B
Vue
27 lines
838 B
Vue
|
<template>
|
||
|
<svg
|
||
|
class="pointer-events-none fill-current w-4 h-4 ml-auto"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="24"
|
||
|
height="24"
|
||
|
viewBox="0 0 118.04 122.88">
|
||
|
>
|
||
|
<path
|
||
|
class="pointer-events-none"
|
||
|
d="M16.08,59.26A8,8,0,0,1,0,59.26a59,59,0,0,1,97.13-45V8a8,8,0,1,1,16.08,0V33.35a8,8,0,0,1-8,8L80.82,43.62a8,8,0,1,1-1.44-15.95l8-.73A43,43,0,0,0,16.08,59.26Zm22.77,19.6a8,8,0,0,1,1.44,16l-10.08.91A42.95,42.95,0,0,0,102,63.86a8,8,0,0,1,16.08,0A59,59,0,0,1,22.3,110v4.18a8,8,0,0,1-16.08,0V89.14h0a8,8,0,0,1,7.29-8l25.31-2.3Z"
|
||
|
/>
|
||
|
</svg>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.my-svg-component {
|
||
|
/* Scoped CSS here */
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
fill: none;
|
||
|
stroke: currentColor;
|
||
|
stroke-width: 1;
|
||
|
stroke-linecap: round;
|
||
|
stroke-linejoin: round;
|
||
|
}
|
||
|
</style>
|