mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
246 B
Svelte
10 lines
246 B
Svelte
<script lang="ts">
|
|
import { CodeSnippet } from "carbon-components-svelte";
|
|
|
|
let toggled = false;
|
|
|
|
$: length = toggled ? 20 : 10;
|
|
$: code = Array.from({ length }, (_, i) => i + 1).join("\n");
|
|
</script>
|
|
|
|
<CodeSnippet type="multi" {code} />
|