mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
16 lines
275 B
Svelte
16 lines
275 B
Svelte
<script>
|
|
import Button from "../Button/Button.svelte";
|
|
</script>
|
|
|
|
<Button
|
|
kind="ghost"
|
|
size="small"
|
|
{...$$restProps}
|
|
class="bx--inline-notification__action-button {$$restProps.class}"
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
</Button>
|