This commit is contained in:
2025-12-03 15:52:12 +01:00
parent a5449ff03c
commit 1153c24bdc
4 changed files with 9 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ const { to, text, icon = undefined, color = undefined } = defineProps<{
color?: string
}>()
const buttonClass = ref(`btn btn-outline ${color ? color : "btn-primary"}`)
const buttonClass = ref(`btn ${color ? color : "btn-primary"}`)
</script>
<template>