mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-07 00:48:20 +01:00
17 lines
304 B
Vue
17 lines
304 B
Vue
<script lang="ts" setup>
|
|
import { cn } from "@/lib/utils";
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<li
|
|
:class="cn('inline-flex items-center gap-1.5', props.class)"
|
|
>
|
|
<slot />
|
|
</li>
|
|
</template>
|