mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-16 03:22:47 +00:00
24 lines
402 B
Vue
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>
|