-| Name | Type | Default | Description |
-| --------------------- | ------------------------------------------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `TouchableComponent` | typeof Component | | Component for user interaction. |
-| `ViewComponent` | React Component | | Component for container. |
-| `buttonStyle` | View Style | | Add additional styling for button component. |
-| `color` | `string` \| `primary` \| `secondary` \| `success` \| `warning` \| `error` | | Color of Button |
-| `containerStyle` | View Style | | Styling for Component container. |
-| `disabled` | boolean | `false` | Disables user interaction. |
-| `disabledStyle` | View Style | | Style of the button when disabled. |
-| `disabledTitleStyle` | Text Style | | Style of the title when disabled. |
-| `icon` | IconNode | | Displays a centered icon (when no title) or to the left (with text). (can be used along with iconRight as well). Can be an object or a custom component. |
-| `iconContainerStyle` | View Style | | Styling for Icon Component container. |
-| `iconPosition` | `top` \| `right` \| `bottom` \| `left` | `left` | Displays Icon to the position mentioned. Needs to be used along with `icon` prop. |
-| `iconRight` | boolean | `false` | Displays Icon to the right of title. Needs to be used along with `icon` prop. |
-| `linearGradientProps` | object | | Displays a linear gradient. See [usage](#linear-gradient). |
-| `loading` | boolean | `false` | Prop to display a loading spinner. |
-| `loadingProps` | ActivityIndicatorProps | | Add additional props for ActivityIndicator component. |
-| `loadingStyle` | View Style | | Add additional styling for loading component. |
-| `radius` | `number` \| `sm` \| `md` \| `lg` | `xs` | Radius of button |
-| `raised` | boolean | `false` | Add raised button styling (optional). Has no effect if `type="clear"`. |
-| `size` | `sm` \| `md` \| `lg` | `md` | Button size |
-| `title` | `string` \| `ReactElement<{}, string` \| `JSXElementConstructor
>` | | Add button title. |
-| `titleProps` | TextProps | | Add additional props for Text component. |
-| `titleStyle` | Text Style | | Add additional styling for title component. |
-| `type` | `solid` \| `clear` \| `outline` | `solid` | Type of button. |
-| `uppercase` | boolean | `false` | Uppercase button title |
+| Name | Type | Default | Description |
+| --------------------- | ------------------------------------------------------------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `TouchableComponent` | typeof Component | | Component for user interaction. |
+| `ViewComponent` | React Component | | Component for container. |
+| `buttonStyle` | View Style | | Add additional styling for button component. |
+| `color` | `string` \| `primary` \| `secondary` \| `success` \| `warning` \| `error` | `primary` | Color of Button |
+| `containerStyle` | View Style | | Styling for Component container. |
+| `disabled` | boolean | `false` | Disables user interaction. |
+| `disabledStyle` | View Style | | Style of the button when disabled. |
+| `disabledTitleStyle` | Text Style | | Style of the title when disabled. |
+| `icon` | IconNode | | Displays a centered icon (when no title) or to the left (with text). (can be used along with iconRight as well). Can be an object or a custom component. |
+| `iconContainerStyle` | View Style | | Styling for Icon Component container. |
+| `iconPosition` | `top` \| `right` \| `bottom` \| `left` | `left` | Displays Icon to the position mentioned. Needs to be used along with `icon` prop. |
+| `iconRight` | boolean | `false` | Displays Icon to the right of title. Needs to be used along with `icon` prop. |
+| `linearGradientProps` | object | | Displays a linear gradient. See [usage](#linear-gradient). |
+| `loading` | boolean | `false` | Prop to display a loading spinner. |
+| `loadingProps` | ActivityIndicatorProps | | Add additional props for ActivityIndicator component. |
+| `loadingStyle` | View Style | | Add additional styling for loading component. |
+| `radius` | `number` \| `sm` \| `md` \| `lg` | `xs` | Radius of button |
+| `raised` | boolean | `false` | Add raised button styling (optional). Has no effect if `type="clear"`. |
+| `size` | `sm` \| `md` \| `lg` | `md` | Button size |
+| `title` | `string` \| `ReactElement<{}, string` \| `JSXElementConstructor>` | | Add button title. |
+| `titleProps` | TextProps | | Add additional props for Text component. |
+| `titleStyle` | Text Style | | Add additional styling for title component. |
+| `type` | `solid` \| `clear` \| `outline` | `solid` | Type of button. |
+| `uppercase` | boolean | `false` | Uppercase button title |
diff --git a/website/docs/components/ListItem.Accordion.mdx b/website/docs/components/ListItem.Accordion.mdx
index 3689c44a26..45d4aeb8fb 100644
--- a/website/docs/components/ListItem.Accordion.mdx
+++ b/website/docs/components/ListItem.Accordion.mdx
@@ -46,15 +46,15 @@ Includes all [ListItem](listitem#props) props.
-| Name | Type | Default | Description |
-| ------------ | ------------------------------ | ---------------------------------------------------------- | ------------------------------------------------------------------------------- |
-| `animation` | Animated.TimingAnimationConfig | `Object with duration 350ms and type timing` | Decide whether to show animation. |
-| `content` | ReactNode | | Similar to ListItem's child. |
-| `expandIcon` | IconNode | | Icon when Accordion is expanded, if not provided `icon` will be rotated 180deg. |
-| `icon` | IconNode | `` | Icon for unexpanded Accordion. |
-| `isExpanded` | boolean | `false` | Decide if Accordion is Expanded. |
-| `leftRotate` | boolean | `false` | Rotate Icon left side |
-| `noIcon` | boolean | | Don't show accordion icon. |
-| `noRotation` | boolean | | Don't rotate when Accordion is expanded. |
+| Name | Type | Default | Description |
+| ------------ | ------------------------------ | ------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `animation` | Animated.TimingAnimationConfig | `Object with duration 350ms and type timing` | Decide whether to show animation. |
+| `content` | ReactNode | | Similar to ListItem's child. |
+| `expandIcon` | IconNode | | Icon when Accordion is expanded, if not provided `icon` will be rotated 180deg. |
+| `icon` | IconNode | `` | Icon for unexpanded Accordion. |
+| `isExpanded` | boolean | `false` | Decide if Accordion is Expanded. |
+| `leftRotate` | boolean | `false` | Rotate Icon left side |
+| `noIcon` | boolean | | Don't show accordion icon. |
+| `noRotation` | boolean | | Don't rotate when Accordion is expanded. |
diff --git a/website/docs/components/ListItem.mdx b/website/docs/components/ListItem.mdx
index 7da31b8b44..7adaca082a 100644
--- a/website/docs/components/ListItem.mdx
+++ b/website/docs/components/ListItem.mdx
@@ -53,14 +53,14 @@ ListItems are used to display rows of information, such as a contact list, playl
```tsx live
<>