23 lines
745 B
Vue
23 lines
745 B
Vue
<script setup lang="ts">
|
|
</script>
|
|
|
|
<template>
|
|
<a href="/" class="mr-6 flex items-center space-x-2">
|
|
<svg class="h-6 w-6" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<g clip-path="url(#clip0_102_1338)">
|
|
<path d="M208 128L128 208" stroke="#41B883" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" />
|
|
<path d="M192 40L40 192" stroke="#41B883" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" />
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_102_1338">
|
|
<rect width="256" height="256" fill="white" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
|
|
<span class="hidden font-bold sm:inline-block">
|
|
shadcn-vue
|
|
</span>
|
|
</a>
|
|
</template>
|