Files
hoppscotch/packages/hoppscotch-ui/src/components/smart/FileChip.vue
Anwarul Islam 6fa722df7b chore: hoppscotch-ui improvements (#3497)
Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
2023-12-06 00:08:44 +05:30

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>