Files
ui-old/components/HeroCard.vue
2022-10-31 18:20:33 +01:00

15 lines
223 B
Vue

<template>
<div class="bg-gradient-to-tr from-primary-600 to-primary-400 text-white rounded shadow p-8">
<slot/>
</div>
</template>
<script>
export default {
name: "HeroCard"
}
</script>
<style scoped>
</style>