mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
16 lines
292 B
Svelte
16 lines
292 B
Svelte
<script>
|
|
export let code = "";
|
|
|
|
import copy from "clipboard-copy";
|
|
import { CodeSnippet } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<div>
|
|
<CodeSnippet {code} type="inline" copy={(text) => copy(text)} />
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
margin-bottom: var(--cds-spacing-03);
|
|
}
|
|
</style>
|