mirror of https://github.com/wg-easy/wg-easy
20 changed files with 133 additions and 87 deletions
@ -0,0 +1,9 @@ |
|||||
|
<template> |
||||
|
<RLabel :for="id" class="md:align-middle md:leading-10"><slot /></RLabel> |
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts" setup> |
||||
|
import { Label as RLabel } from 'radix-vue'; |
||||
|
|
||||
|
defineProps<{ id: string }>(); |
||||
|
</script> |
@ -0,0 +1,15 @@ |
|||||
|
<template> |
||||
|
<svg |
||||
|
xmlns="http://www.w3.org/2000/svg" |
||||
|
fill="none" |
||||
|
viewBox="0 0 24 24" |
||||
|
stroke="currentColor" |
||||
|
> |
||||
|
<path |
||||
|
stroke-linecap="round" |
||||
|
stroke-linejoin="round" |
||||
|
stroke-width="2" |
||||
|
d="M13.213 9.787a3.391 3.391 0 0 0-4.795 0l-3.425 3.426a3.39 3.39 0 0 0 4.795 4.794l.321-.304m-.321-4.49a3.39 3.39 0 0 0 4.795 0l3.424-3.426a3.39 3.39 0 0 0-4.794-4.795l-1.028.961" |
||||
|
/> |
||||
|
</svg> |
||||
|
</template> |
Loading…
Reference in new issue