Hello:
It's well-known that mapview icons for widgets can be gotten from Calcite theme Esri Icon fonts (https://developers.arcgis.com/javascript/latest/esri-icon-font/).
Also it'[s well known that Calcite has a plethora of icons: https://developers.arcgis.com/calcite-design-system/icons/?icon=erase&library=Calcite%20UI&query=&version=3.19.4
What I would like to do is use the Calcite Design System Icons for the expandIconClass for an Expand widget.
For example:
const nodette1 = document.getElementById("slope-slider-container");
let photoFilterExpand = new Expand({
expandIconClass: <HERE_IS_MY_CUSTOM_ICON_CLASS>,
expandTooltip: "Slope Map",
view: sceneView,
content: nodette1,
id:"slope-map-expand"
});
sceneView.ui.add(photoFilterExpand, "bottom-left");
What I'd like to do is make <HERE_IS_MY_CUSTOM_ICON_CLASS> use the Calcite Design System Icons (and another other icon I make for that matter ;-o).
TIA