Skip to content

Commit

Permalink
Fix type issue in BaseHeading
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Jul 18, 2023
1 parent 0f67371 commit 957fb39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/src/base-heading/base-heading.story.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@

<script setup lang="ts">
import { reactive } from 'vue';
import BaseHeading from './base-heading.vue';
import BaseHeading, { type BaseHeadingProps } from './base-heading.vue';
const state = reactive({
const state: BaseHeadingProps = reactive({
size: 'large',
tag: 'h2',
icon: undefined,
Expand Down

0 comments on commit 957fb39

Please sign in to comment.