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-puppeteer/samples/component-css-custom-proper.../Svg.svelte

17 lines
227 B

<script>
export let id;
</script>
<g {id}>
<circle cx="50" cy="50" r="10" />
<rect width="100" height="100" />
</g>
<style>
circle {
fill: var(--circle-color);
}
rect {
fill: var(--rect-color)
}
</style>