Skip to content
This repository was archived by the owner on Jan 8, 2020. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 586 Bytes

ActionBar.md

File metadata and controls

32 lines (24 loc) · 586 Bytes

ActionBar

Component for displaying a list of actions as buttons to the user.

Used primarily in BaseTable for multiselect.

Usage

const actions = [
  {
    danger: true,
    icon: 'delete',
    label: 'Delete All Items',
    onClick: deleteItems
  },
  {
    icon: 'save',
    label: 'Save All Items',
    onClick: saveItems
  }
];

<ActionBar actions={actions} items={4} />

API

Props

  • actions: Array<Object> - Props to pass to individual ActionButtons
  • items: Number - Number of items to display as "selected" next to the actions