Skip to content

Commit

Permalink
actually set level 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsnes committed Sep 5, 2024
1 parent 1b12622 commit 7b6d019
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export type HeadingProps = {
*/
export const Heading = forwardRef<HTMLHeadingElement, HeadingProps>(
(
{ size = 'xl', level = 1, spacing = false, className, asChild, ...rest },
{ size = 'xl', level = 2, spacing = false, className, asChild, ...rest },
ref,
) => {
const Component = asChild ? Slot : (`h${level ?? 1}` as ElementType);
Expand Down

0 comments on commit 7b6d019

Please sign in to comment.