Hi.
What is the difference between the property IconColor and IconStyle for the component RadzenIcon
Both are using the var(--rz-xxxxx) .
I don't understand why we have these 2 properties that do the same
Thanks
Hi.
What is the difference between the property IconColor and IconStyle for the component RadzenIcon
Both are using the var(--rz-xxxxx) .
I don't understand why we have these 2 properties that do the same
Thanks
The IconStyle uses predefined theme colors that are associated with "state" or "role" - success, primary, secondary etc. The IconColor could be any color and is a regular string e.g.
<RadzenIcon Icon="info" IconColor="red" />
<RadzenIcon Icon="info" IconColor="#00ff00" />
<RadzenIcon Icon="info" IconColor="rgb(0,0,255)" />
Thanks for you quick reply