{"version":3,"file":"CEeawd8W.js","sources":["../../../../components/home/HomeAuctions.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { PropType } from 'vue';\n\nconst props = defineProps({\n  auctions: { type: Object as PropType<any>, required: true },\n  pending: Boolean as PropType<boolean>,\n});\nconst { auctions, pending } = toRefs(props);\n</script>\n<template>\n  <div class=\"w-full\">\n    <div\n      class=\"grid w-full grid-cols-1 gap-y-4 sm:grid-cols-2 sm:gap-x-6 sm:gap-y-6 md:grid-cols-3 md:gap-6 xl:grid-cols-4 xl:gap-8\"\n    >\n      <NftCard v-for=\"nft in auctions\" :key=\"`${nft.id}${nft.auction?.id}`\" :nft=\"nft\" />\n      <template v-if=\"pending\">\n        <NftCard v-for=\"index in 12\" :key=\"index\" :nft=\"undefined\" />\n      </template>\n    </div>\n  </div>\n</template>\n"],"names":["props","__props","auctions","pending","toRefs"],"mappings":"yXAGA,MAAMA,EAAQC,EAIR,CAAE,SAAAC,EAAU,QAAAC,CAAQ,EAAIC,EAAOJ,CAAK"}