I'm using ArcGIS JS API 4.32 and currently converting the app's widgets into components.
The app includes a calcite-action-bar on the left side, and I've been successfully integrating components like the LayerList, Legend, and others.
Most conversions have been straightforward, except for the Home component.
Integrating the Home component into the action bar has been challenging, as it interacts directly with the map view, making it less adaptable to the component-based structure.
This is the current setup.
<calcite-shell-panel id="primary-shell-panel" slot="panel-start">
<calcite-action-bar slot="action-bar" expand-disabled id="action-bar-left">
<calcite-action-group>
<calcite-action data-action-id="home" id="home" text="Home" icon="home"></calcite-action>
<calcite-action data-action-id="previous" id="previous" text="Previous Extent" icon="arrow-left">
</calcite-action>
<calcite-action data-action-id="next" id="next" text="Next Extent" icon="arrow-right">
</calcite-action>
</calcite-action-group>
<calcite-action-group> How can I use the home component in the action bar?
<arcgis-map item-id="45b3b2fb35e94ab09381d0caa0da5946">
<arcgis-home position="top-left"></arcgis-home>
</arcgis-map>

@AnneFitz @JoelBennett