mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
15 lines
242 B
Svelte
15 lines
242 B
Svelte
<script>
|
|
import { Button } from "carbon-components-svelte";
|
|
|
|
let ref;
|
|
</script>
|
|
|
|
<Button bind:ref>Primary button</Button>
|
|
<Button
|
|
kind="ghost"
|
|
on:click="{() => {
|
|
ref?.focus();
|
|
}}"
|
|
>
|
|
Click to focus the Primary button
|
|
</Button>
|