mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
/// <reference types="svelte" />
|
|
import { SvelteComponent } from "svelte";
|
|
|
|
export interface ButtonSetProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
|
|
/**
|
|
* Set to `true` to stack the buttons vertically
|
|
* @default false
|
|
*/
|
|
stacked?: boolean;
|
|
}
|
|
|
|
export default class ButtonSet extends SvelteComponent<ButtonSetProps, {}, { default: {} }> {}
|