explorer-app/components/Project/Create/Components/Item.vue

34 lines
535 B
Vue
Raw Normal View History

2024-09-12 18:03:06 +02:00
<script setup lang="ts">
const emits = defineEmits(['remove'])
</script>
<template>
<div
flex
justify-between
items-center
py-12px
px-16px
bg-app-white
>
<slot name="label" />
<div
flex
items-center
gap-16px
>
<slot
class="text-app-black/50"
name="desc"
/>
<button @click="emits('remove')">
<UnoIcon
i-heroicons-solid-x
text-12px
text-app-black
/>
</button>
</div>
</div>
</template>