I am using implicit styles with UI for WPF. To customize some of the controls I have been copying styles and/or templates from the styles in the Telerik UI for WPF R3 2020\Themes.Implicit\WPF40\Fluent\Themes folder. This has been working fine but I am curious about the namespaces.
The styles I am copying make reference to a namespace called telerik1. After copying the style I initially was adding the telerik1 namespace to my custom style xaml file. That worked fine. More recently, instead of adding the namespace, I have been doing a search/replace to replace all occurrences of "telerik1" with "telerik". This also works fine.
I prefer just replacing "telerik1" with "telerik" and not adding the namespace. Are there any issues or downsides with that approach?