mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
11 lines
194 B
Svelte
11 lines
194 B
Svelte
<script lang="ts">
|
|
import { CopyButton } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<CopyButton
|
|
text="text"
|
|
on:click
|
|
on:copy
|
|
copy={(text) => text}
|
|
feedback="Copied to clipboard"
|
|
/>
|