From 26bd689b442fbc535b8608507494619aa61f0de5 Mon Sep 17 00:00:00 2001
From: Dhruv <91935072+dhruvdabhi101@users.noreply.github.com>
Date: Thu, 25 May 2023 23:05:38 +0530
Subject: [PATCH] Fixed Text Docs not rendering issue in Storybook (#19248)
---
ui/components/component-library/text/README.mdx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
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