webfansplz a6618c1173
feat(ui): add tests summary in the dashboard (#2133)
Co-authored-by: userquin <userquin@gmail.com>
2022-10-14 11:29:48 +02:00

20 lines
437 B
Vue

<script setup lang="ts">
withDefaults(defineProps<{ tail?: boolean }>(), { tail: false })
</script>
<template>
<div p-2 text-center flex>
<div>
<div text-4xl min-w-2em>
<slot name="body" />
</div>
<div text-md>
<slot name="header" />
</div>
</div>
<!--
<div v-if="!tail" data-testid="tail" my-0 op50 w-2px bg-current origin-center rotate-0 translate-x-3 />
-->
</div>
</template>