17 lines
298 B
Vue
17 lines
298 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<li
|
|
:class="cn('inline-flex items-center gap-1.5', props.class)"
|
|
>
|
|
<slot />
|
|
</li>
|
|
</template>
|