Files
git-velocity/web/src/components/SectionHeader.vue
T
2025-12-12 23:07:29 +00:00

24 lines
402 B
Vue

<script setup>
defineProps({
title: {
type: String,
required: true
},
icon: {
type: String,
default: ''
},
iconColor: {
type: String,
default: 'text-primary-500'
}
})
</script>
<template>
<h2 class="text-2xl font-bold text-white mb-6">
<i v-if="icon" :class="[icon, iconColor]" class="mr-2"></i>{{ title }}
<slot name="suffix"></slot>
</h2>
</template>