HomeVendure CoreShow hidden breadcrumbs...React ComponentsActionBarOn this pageActionBar@vendure/admin-uiSource A container for the primary actions on a list or detail page Example Tsimport { ActionBar } from '@vendure/admin-ui/react';export function MyComponent() { return ( <ActionBar leftContent={<div>Optional left content</div>}> <button className='button primary'>Primary action</button> </ActionBar> );} Signaturefunction ActionBar(props: PropsWithChildren<{ leftContent?: ReactNode }>): void Parameters props parameterPropsWithChildren<{ leftContent?: ReactNode }>Was this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousReact ComponentsNextCardEdited Feb 2, 2026·Edit this page