Color Schemes for List
are not implemented in the default theme. You can extend the theme to implement them.
List
List
component is used to display list items. It renders a <ul>
element by
default.
Import#
import { List, ListItem, ListIcon, OrderedList, UnorderedList } from "@chakra-ui/react"
Unordered List#
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
Ordered List#
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
Unstyled List with icon#
Add icons to the list items by using the ListIcon
component. You can pass the
name of the icon or use custom icons. The size of the icon is relative to the
font size of the list item.
- Lorem ipsum dolor sit amet, consectetur adipisicing elit
- Assumenda, quia temporibus eveniet a libero incidunt suscipit
- Quidem, ipsam illum quis sed voluptatum quae eum fugit earum
- Quidem, ipsam illum quis sed voluptatum quae eum fugit earum
Props#
List Props#
colorScheme
colorScheme
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
size
size
Sizes for List
are not implemented in the default theme. You can extend the theme to implement them.
string
spacing
spacing
The space between each list item
SystemProps["margin"]
stylePosition
stylePosition
Short hand prop for listStylePosition
SystemProps["listStylePosition"]
styleType
styleType
Short hand prop for listStyleType
SystemProps["listStyleType"]
variant
variant
Variants for List
are not implemented in the default theme. You can extend the theme to implement them.
string
List Item Props#
ListItem
composes Box so you can pass all style and pseudo
style props.