Co-authored-by: Liyas Thomas <liyascthomas@gmail.com> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
13 lines
333 B
Vue
13 lines
333 B
Vue
<template>
|
|
<span
|
|
class="inline-flex items-center space-x-1 justify-center rounded px-2 bg-primaryDark"
|
|
>
|
|
<IconLucideFile class="opacity-75 svg-icons" />
|
|
<span class="truncate max-w-[16rem]"><slot></slot></span>
|
|
</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import IconLucideFile from "~icons/lucide/file"
|
|
</script>
|