diff --git a/ui/components/component-library/text/README.mdx b/ui/components/component-library/text/README.mdx
index 3ca145b4d..6d4fd47a8 100644
--- a/ui/components/component-library/text/README.mdx
+++ b/ui/components/component-library/text/README.mdx
@@ -119,7 +119,7 @@ Use the `fontWeight` prop and the `FontWeight` enum from `./ui/helpers/constants
- `FontWeight.Bold` = `bold` || `700`
```jsx
@@ -145,7 +145,7 @@ Use the `fontStyle` prop and the `FontStyle` enum from `./ui/helpers/constants/d
- `FontStyle.Italic`
```jsx
@@ -165,7 +165,7 @@ import { FontStyle } from '../../../helpers/constants/design-system';
Use the `textTransform` prop and the `TextTransform` enum from `./ui/helpers/constants/design-system.ts` to change the text alignment of the `Text` component
```jsx
@@ -188,7 +188,7 @@ import { TextTransform } from '../../../helpers/constants/design-system';
Use the `textAlign` prop and the `TextAlign` enum from `./ui/helpers/constants/design-system.ts` to change the text alignment of the `Text` component
```jsx
@@ -217,7 +217,7 @@ import { TextAlign } from '../../../helpers/constants/design-system';
Use the `overflowWrap` prop and the `OverflowWrap` enum from `./ui/helpers/constants/design-system.ts` to change the overflow wrap of the `Text` component
```jsx