diff --git a/src/components/alert/Alert.vue b/src/components/alert/Alert.vue index c4e13e4bc135dff895e7423e03921c9f854fbb7f..d08835f7adf0be4c0c6934bc979fb64151f54bac 100644 --- a/src/components/alert/Alert.vue +++ b/src/components/alert/Alert.vue @@ -1,5 +1,6 @@ <script setup lang="ts"> import { useColorOrPastel } from '~/composables/colors' +import type { PastelProps } from '~/types/common-props' const props = defineProps<PastelProps>() const color = useColorOrPastel(() => props.color, 'blue')