diff --git a/components/ButtonStyled.vue b/components/ButtonStyled.vue index dae1183c..b24ca6fe 100644 --- a/components/ButtonStyled.vue +++ b/components/ButtonStyled.vue @@ -10,6 +10,10 @@ withDefaults( } ); +defineSlots<{ + default: (props: {}) => any; +}>(); + const className = cva("py-3 px-6 rounded-full flex gap-3 items-center", { variants: { intent: { diff --git a/components/ContentSection.vue b/components/ContentSection.vue index a173770e..f2cc8c03 100644 --- a/components/ContentSection.vue +++ b/components/ContentSection.vue @@ -11,6 +11,10 @@ withDefaults( linkLabel: "See all", } ); + +defineSlots<{ + default: (props: {}) => any; +}>();