# RowContent Required for formatted output of elements inside Row ### Usage ```js import RowContent from "@docspace/components/row-content"; import SendClockReactSvg from "PUBLIC_DIR/images/send.clock.react.svg"; import CatalogSpamReactSvg from "PUBLIC_DIR/images/catalog.spam.react.svg"; ``` ```jsx Demo <> Demo Demo 0 000 0000000 demo@demo.com ``` To correctly display components inside RowContent, you must specify them in a certain order. The first and second specified components will be interpreted as Main elements. First will be MainTitle and second MainIcons. All subsequent components will be located on the right and are considered SideElements. **_Consider location of components in advance, since when viewing in tablet mode, the markup will shift SideElements to second line._** Each not main child can take containerWidth property for task of width of child's container. ### Properties | Props | Type | Required | Values | Default | Description | | ----------------- | :------------: | :------: | :----: | :-----: | -------------------------------------- | | `children` | `node` | ✅ | - | - | Components displayed inside RowContent | | `className` | `string` | - | - | - | Accepts class | | `containerWidth` | `string` | - | - | `100px` | For task of width of child's container | | `disableSideInfo` | `bool` | - | - | `false` | If you do not need SideElements | | `id` | `string` | - | - | - | Accepts id | | `sideColor` | `string` | - | - | - | Need for change side information color | | `style` | `obj`, `array` | - | - | - | Accepts css style |