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