diff --git a/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue b/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue index f8a8c6f..10e80cd 100644 --- a/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue +++ b/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue @@ -4,9 +4,10 @@ import type { ButtonProps } from "@nuxt/ui"; type AcfLinkButtonProps = & Omit & { link?: AcfLinkFragment; + showLabel?: boolean; }; -const { link, ...buttonProps } = defineProps(); +const { link, showLabel, ...buttonProps } = defineProps();