Skip to content

Commit

Permalink
docs(TableExamplePagination): order icon names per docs (Semantic-Org…
Browse files Browse the repository at this point in the history
…#2534)

According to https://react.semantic-ui.com/elements/icon, `chevron left` and `chevron right` should be used.
  • Loading branch information
searene authored and Brandon Lawrence committed Mar 14, 2018
1 parent 0940b18 commit c94f7ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ const TableExamplePagination = () => (
<Table.HeaderCell colSpan='3'>
<Menu floated='right' pagination>
<Menu.Item as='a' icon>
<Icon name='left chevron' />
<Icon name='chevron left' />
</Menu.Item>
<Menu.Item as='a'>1</Menu.Item>
<Menu.Item as='a'>2</Menu.Item>
<Menu.Item as='a'>3</Menu.Item>
<Menu.Item as='a'>4</Menu.Item>
<Menu.Item as='a' icon>
<Icon name='right chevron' />
<Icon name='chevron right' />
</Menu.Item>
</Menu>
</Table.HeaderCell>
Expand Down

0 comments on commit c94f7ca

Please sign in to comment.