mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
8 lines
248 B
Svelte
8 lines
248 B
Svelte
<script lang="ts">
|
|
export let copy = (text: string) => text;
|
|
export let code = "npm i carbon-component-svelte";
|
|
|
|
import { CodeSnippet } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<CodeSnippet on:click={() => copy(code)}>{code}</CodeSnippet>
|