Expand angle-right icon i want to change another i con…

You can change the icon and use a different lumo-icon if you use this css:
vaadin-grid-tree-toggle[expanded]::part(toggle)::before {
content: var(--lumo-icons-minus);
transform: rotate(0deg);
border: 1px dotted;
}
vaadin-grid-tree-toggle::part(toggle)::before {
content: var(--lumo-icons-plus);
border: 1px dotted;
}
it is working sir! thank u!![]()