From b91dbca144c23f6ff3630b03c5fa488c0863f3e7 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 8 May 2024 17:02:32 -0700 Subject: [PATCH] refactor: btnStyle prop for CallbackButton component --- web/components/UpdateOs/CallbackButton.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/components/UpdateOs/CallbackButton.vue b/web/components/UpdateOs/CallbackButton.vue index f50eeca65..c1080669b 100644 --- a/web/components/UpdateOs/CallbackButton.vue +++ b/web/components/UpdateOs/CallbackButton.vue @@ -2,8 +2,10 @@ import { ArrowPathIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid'; import { useAccountStore } from '~/store/account'; +import type { ButtonStyle } from '~/types/ui/button'; defineProps<{ + btnStyle?: ButtonStyle; t: any; }>(); @@ -13,6 +15,7 @@ const accountStore = useAccountStore();