mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
20 lines
474 B
TypeScript
20 lines
474 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type RestProps = SvelteHTMLElements["div"];
|
|
|
|
export interface ButtonSetProps extends RestProps {
|
|
/**
|
|
* Set to `true` to stack the buttons vertically
|
|
* @default false
|
|
*/
|
|
stacked?: boolean;
|
|
|
|
[key: `data-${string}`]: any;
|
|
}
|
|
|
|
export default class ButtonSet extends SvelteComponentTyped<
|
|
ButtonSetProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|