Skip to content

Commit

Permalink
fix(BaseHeading): use p tag by default
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Apr 15, 2023
1 parent d636d70 commit c0310a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/base/BaseHeading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const props = withDefaults(
/**
* The heading element to use (e.g. `h1`, `h2`, etc.).
*/
as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span'
as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span' | 'p'
/**
* The size of the heading.
Expand Down Expand Up @@ -35,7 +35,7 @@ const props = withDefaults(
lead?: 'none' | 'tight' | 'snug' | 'normal' | 'relaxed' | 'loose'
}>(),
{
as: 'h3',
as: 'p',
size: 'xl',
weight: 'semibold',
lead: 'normal',
Expand Down

0 comments on commit c0310a4

Please sign in to comment.