mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
22 lines
330 B
Svelte
22 lines
330 B
Svelte
<script>
|
|
export let code = "";
|
|
|
|
import { CodeSnippet } from "carbon-components-svelte";
|
|
import copy from "clipboard-copy";
|
|
</script>
|
|
|
|
<div>
|
|
<CodeSnippet
|
|
code="{code}"
|
|
type="inline"
|
|
on:click="{() => {
|
|
copy(code);
|
|
}}"
|
|
/>
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
margin-bottom: var(--cds-spacing-04);
|
|
}
|
|
</style>
|