Skip to content

Commit 5ec4be9

Browse files
authored
Merge pull request #2424 from dxc-technology/PelayoFelgueroso/paragraph_styles-fix
[patch] Fix styles from Paragraph styled component
2 parents 26be69e + 1e33228 commit 5ec4be9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/lib/src/paragraph/Paragraph.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { ReactNode } from "react";
22
import styled from "@emotion/styled";
33

44
const Paragraph = styled.p`
5-
display: "block";
5+
display: block;
66
font-family: var(--typography-font-family);
77
font-size: var(--typography-body-m);
88
font-weight: var(--typography-body-regular);
99
letter-spacing: var(--spacing-gap-none);
1010
line-height: var(--height-s);
11-
text-align: "left";
11+
text-align: left;
1212
color: var(--color-fg-neutral-dark);
1313
text-decoration: none;
1414
text-overflow: unset;

0 commit comments

Comments
 (0)