How to define an icon within a circle

Here is my attempt but it seem like that there could be a cleaner way, no?

<RadzenIcon Icon="attach_money" Style="width: 80px; height: 80px; background-color: #4dabf5;font-size:52px;color:#1666a5;" Class="rz-border-radius-10 rz-shadow-0 rz-border-base-300 me-3 rz-info-lighter" />

You can always use classes...

<RadzenIcon
    Icon="language"
    title="Language"
    class="rz-border-radius-10 rz-background-color-warning p-2"
/>

More in docs.

Wow that's very straight forward - thank you