mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-18 03:43:56 +00:00
19 lines
364 B
Vue
19 lines
364 B
Vue
<script setup>
|
|
defineProps({
|
|
padding: { type: Boolean, default: true },
|
|
hover: { type: Boolean, default: false }
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:class="[
|
|
'rounded-xl bg-gray-800 text-white border border-gray-700 shadow',
|
|
padding ? 'p-6' : '',
|
|
hover ? 'hover:shadow-lg transition-shadow' : ''
|
|
]"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|