Skip to content

v29.13.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 29 Oct 00:16
· 1146 commits to master since this release
a4b60f0

Minor Changes

  • List: Add support for icons (#810)

    Provides a way to use an icon for all the items in a list. When using type="icon" you must also provide the icon prop. See example below:

    EXAMPLE USAGE:

    <List type="icon" icon={<IconTick tone="positive" />}>
      <Text>This is a list item.</Text>
      <Text>This is a list item.</Text>
      <Text>This is a list item.</Text>
    </List>