Describe the problem
When using the duotone element, the default prefix is read by the global options when not explicitly provided.
What did you expect?
Unless specifically overridden it should infer that the icon set used for this element is "fad". Maybe a global config to change this behaviour too, that way you can change this without it being a breaking change for users
Reproducible test case
Basic setup of angular and FA, no special extras needed
<fa-duotone-icon icon="user"></fa-duotone-icon> <!-- By default this should be using the "fad-user" icon -->
<fa-duotone-icon [icon]="['fad', 'user']"></fa-duotone-icon> <!-- Instead it has to be written like this currently, which just feels redundant -->