mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
13 lines
237 B
Svelte
13 lines
237 B
Svelte
<script>
|
|
import CopyButton from "./CopyButton.svelte";
|
|
</script>
|
|
|
|
<CopyButton
|
|
{...$$props}
|
|
on:click="{() => {
|
|
console.log('click');
|
|
}}"
|
|
on:animationend="{(e) => {
|
|
console.log('animation end', e.animationName);
|
|
}}"
|
|
/>
|