23 lines
355 B
Vue
23 lines
355 B
Vue
|
|
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { Bean } from 'lucide-vue-next';
|
|
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
});
|
|
|
|
type Props = {
|
|
className?: HTMLAttributes['class'];
|
|
};
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<Bean
|
|
class="w-5 h-5 text-white"
|
|
:stroke-width="2.8"
|
|
/>
|
|
</template>
|