Change dropdown caret

Hi, I'm trying to change the dropdown caret to match this:
image
But there is no example in the documentation on how to change the caret. Can anyone give me some pointers?

That's not directly supported so you won't find any documentation about it. You have to use CSS to do that.

<style>
    .rz-dropdown-trigger-icon::before {
       content: 'keyboard_arrow_down' !important;
    }
</style>