Compact action bar that appears when one or more items are selected.
BulkActionBar renders a compact bar showing the selected count, primary/secondary actions, and a clear control. It is hidden when count is 0. Pair with DataGrid selection or any list-style surface that supports multi-select.
Bar surfaces only when count is greater than zero.
<BulkActionBar
actions={<><Button size="sm">Archive</Button><Button size="sm" variant="ghost">Move</Button></>}
count={3}
/>import { BulkActionBar } from "@froggdesign/enter-ui-react";BulkActionBar uses role="region" with an aria-label pattern of {count} {countLabel}. The Clear control is a real <button>. Place the bar inside the same scroll container as the selectable surface so keyboard focus stays nearby after a selection action.
count: required. The bar renders only when count > 0.countLabel: customise the trailing label (default "selected").actions: trailing actions slot (use Button size="sm").onClear: when provided renders a ghost Clear button.sticky: render the bar as a sticky footer.Every exported component accepts className. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.