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-mult.../main.svelte

14 lines
259 B

<script>
export let myColor = "red";
export let width = "65px";
export let absolute = false;
export let bold = true;
</script>
<p
style:color={myColor}
style:width
style:position={absolute ? "absolute" : null}
style:font-weight={bold ? 700 : 100}
/>