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

15 lines
235 B

<script>
import Slider from './Slider.svelte';
</script>
<Slider
id="slider-1"
--rail-color="rgb(0, 0, 0)"
--track-color="rgb(255, 0, 0)"
/>
<Slider
id="slider-2"
--rail-color="rgb(0, 255, 0)"
--track-color="rgb(0, 0, 255)"
/>