| <script setup>
import { FolderPlusIcon } from "@heroicons/vue/20/solid";
</script>
<template>
  <div class="relative block w-full p-10 max-w-2xl text-center rounded-lg border-2 border-dashed border-gray-300">
    <FolderPlusIcon class="mx-auto h-12 w-12 text-gray-400" />
    <h3 class="mt-2 text-sm font-semibold text-gray-900">
      No files found
    </h3>
  </div>
</template>
<style scoped>
</style>
 |