When creating a calcite-icon in HTML, one use's scale to specify the size of the icon.
<calcite-icon icon="banana" scale="l"/>
Where creating a widget in JS, you specify the calcite icon by name (available HERE) :
const homeWidget = new Home({
view: mapView,
icon: "banana"
});
The icon on the widget is scaled to "s" (small) by default. There is no apparent way to scale the icon when instantiating the widget in code. The CSS is beyond me at this time.
How can I scale the icon? I want "l".
TIA
I've had some success with this with ArcGISExpand using CSS, I have not had success with it using ESRI widgets such as ArcGISHome, ArcGISZoom, etc. This is what I used for the icons on ArcGISExpand: