<script>
// RELATED GITHUB ISSUE: https://github.com/sveltejs/svelte/issues/7461
let msg = 'Hello there';
import Component from './Component.svelte'
</script>
<!-- BOTH SHOULD BE RED -->
<!-- --style-props isn't works -->
<svelte:component this={Component} {msg} --headingColor="red"></svelte:component>
<!-- --style-props works as intended -->
<Component {msg} --headingColor="red"></Component>