diff --git a/components/character-fictionality.vue b/components/character-fictionality.vue index 90f6e15..c2cf84d 100644 --- a/components/character-fictionality.vue +++ b/components/character-fictionality.vue @@ -4,8 +4,11 @@ import { UserRoundIcon, UserRoundPenIcon, VenetianMaskIcon } from "lucide-vue-ne const props = defineProps<{ fictionality: string; isMobile: boolean; + isTablet: boolean; }>(); +console.log(props.isMobile, props.isTablet); + type Icon = typeof UserRoundIcon; const characterIcons: Record = { @@ -24,7 +27,7 @@ const iconComponent = computed(() => {