mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
12 lines
219 B
Svelte
12 lines
219 B
Svelte
<script>
|
|
/** Set to `true` to stack the buttons vertically */
|
|
export let stacked = false;
|
|
</script>
|
|
|
|
<div
|
|
class:bx--btn-set="{true}"
|
|
class:bx--btn-set--stacked="{stacked}"
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</div>
|