2024-04-25 08:56:01 +02:00
|
|
|
<template>
|
|
|
|
|
<ButtonsBase
|
|
|
|
|
class="bg-white/10 hover:bg-white/20 !text-left flex flex-row gap-x-3 !rounded-none !ring-0 !p-4 sm:!p-3">
|
|
|
|
|
<Icon :name="icon" class="h-5 w-5 text-gray-200" aria-hidden="true" />
|
|
|
|
|
<slot />
|
|
|
|
|
</ButtonsBase>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import type { ButtonHTMLAttributes } from "vue";
|
|
|
|
|
|
2024-04-25 08:58:17 +02:00
|
|
|
interface Props extends /* @vue-ignore */ ButtonHTMLAttributes {}
|
2024-04-25 08:56:01 +02:00
|
|
|
|
2024-04-25 08:58:17 +02:00
|
|
|
defineProps<
|
|
|
|
|
Props & {
|
|
|
|
|
icon: string;
|
|
|
|
|
}
|
|
|
|
|
>();
|
2024-04-25 08:56:01 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|