Stack list

If the list property is true, a ul element will be rendered instead of the standard div.

<Stack list={true}>
	<li>List item</li>
	<li>List item</li>
	<li>List item</li>
	...
</Stack>

results in:

<ul class="stack">
	<li>List item</li>
	<li>List item</li>
	<li>List item</li>
	...
</ul>

Props

Example

  • Item
  • Item
  • Item
  • Item
  • Item