Skip to content

Commit

Permalink
Correct the icon keys in the README (#282)
Browse files Browse the repository at this point in the history
Resolves #272.
  • Loading branch information
jakezatecky authored May 2, 2024
1 parent 159b728 commit 31209a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ By default, **react-dual-listbox** uses [Font Awesome][font-awesome] for the var
<DualListBox
...
icons={{
moveLeft: <span className="fa fa-chevron-left" />,
moveAllLeft: [
moveToAvailable: <span className="fa fa-chevron-left" />,
moveAllToAvailable: [
<span key={0} className="fa fa-chevron-left" />,
<span key={1} className="fa fa-chevron-left" />,
],
moveRight: <span className="fa fa-chevron-right" />,
moveAllRight: [
moveToSelected: <span className="fa fa-chevron-right" />,
moveAllToSelected: [
<span key={0} className="fa fa-chevron-right" />,
<span key={1} className="fa fa-chevron-right" />,
],
Expand Down

0 comments on commit 31209a4

Please sign in to comment.