Skip to content

Commit

Permalink
fix: remove space before the paragraph children
Browse files Browse the repository at this point in the history
  • Loading branch information
YourivHDenHaag committed Oct 10, 2024
1 parent 35035f1 commit 6bbec9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Typography/src/Paragraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export interface ParagraphProps {

export const Paragraph = (props: ParagraphProps) => {
const rootClassNames = clsx('utrecht-paragraph', props.className);
return <p className={rootClassNames}> {props.children}</p>;
return <p className={rootClassNames}>{props.children}</p>;
};

0 comments on commit 6bbec9e

Please sign in to comment.