components
WideList (code)
WideLists represent a set of WideListItems displayed in a way to organize related information.
Props
WideList
Name | Type | Default | Required | Description |
---|---|---|---|---|
children | Node | - | - | Children displayed within the WideList (WideListItem). |
elevation | 01234 | 1 | - | Controls the shadow of the WideList |
System Props
System Props
Next to the properties listed in the propstable, a collection of system props can be added to any component for further general styling and layouting purposes. These props vary per component.
To read more about the system, click here to check out its dedicated page.
WideListItem
Name | Type | Default | Required | Description |
---|---|---|---|---|
action | Node | - | - | Contents displayed on the right. Will not be shown when clickable is also true. |
avatar | String | - | - | Controls the Avatar's src prop. |
avatarCircular | Boolean | - | - | Controls the Avatar's circular prop. |
clickable | Boolean | - | - | If clickable is set to true the WideListItem will show a hover state. |
description | Node | - | - | The text written under title. |
iconLeft | FunctionNodeObject | - | - | Controls the as prop of the Icon on the left side. |
iconRight | FunctionNodeObject | - | - | Controls the as prop of the Icon on the right side. |
loading | Boolean | - | - | Show a loading state (e.g. while fetching data). |
title | Node | - | - | The Text written at the top of the component. |
System Props
System Props
Next to the properties listed in the propstable, a collection of system props can be added to any component for further general styling and layouting purposes. These props vary per component.
To read more about the system, click here to check out its dedicated page.
Title
default: undefined
Title denotes the upper textual part of the item.
If a string is passed in as the property, it will get the default styling. To customize styling, you can pass in a Text component.
Description
default: undefined
Description denotes the lower textual part of the item.
If a string is passed in as the property, it will get the default styling. To customize styling, you can pass in a Text component.
Action
default: undefined
This adds an action or extra information to your item.
Clickable
default: false
Indicates to the user that the item can be interacted with, e.g. pointing them to a new page.
Avatar
default: undefined
Displays an avatar.
AvatarCircular
default: false
Make the avatar circular
IconLeft and IconRight
default: undefined
Add an icon to the WideListItem to clarify the values.
Loading
default: false
Indicates to the user that the data to be displayed is being loaded.
Elevation
default: 1
Controls the elevation of the WideList container.