Svelte will throw an error Style directives cannot be used on components when it tries to change from style= to style:
For example:
<Component style="display:block"/>
will fix to:
<Component style:display="block"/>
Which will throw an error:
Style directives cannot be used on components
I think this is an obvious issue and doesn't require a reproduction.