Skip to content

Commit

Permalink
Fix Typography > Heading > H4 (#127)
Browse files Browse the repository at this point in the history
Co-authored-by: Kerry <[email protected]>
  • Loading branch information
florianduros and Kerry authored Nov 9, 2023
1 parent 8f38c6b commit c3cddd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Typography/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const H3: React.FC<HeadingProps> = ({ children, ...props }) => {
*/
export const H4: React.FC<HeadingProps> = ({ children, ...props }) => {
return (
<Heading as="h1" weight="semibold" size="sm" {...props}>
<Heading as="h4" weight="semibold" size="sm" {...props}>
{children}
</Heading>
);
Expand Down

0 comments on commit c3cddd2

Please sign in to comment.