You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/inline-style-directive-stri.../main.svelte

8 lines
247 B

<script>
export let translate_x = "45px";
export let border_width = 100;
export let border_color;
</script>
<p style:color={"green"} style:transform="translateX({translate_x})" style:border="{border_width}px solid {border_color || 'pink'}" />