mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
20 lines
382 B
TypeScript
20 lines
382 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export type ContextMenuGroupProps = {
|
|
/**
|
|
* @default []
|
|
*/
|
|
selectedIds?: ReadonlyArray<string>;
|
|
|
|
/**
|
|
* Specify the label text
|
|
* @default ""
|
|
*/
|
|
labelText?: string;
|
|
};
|
|
|
|
export default class ContextMenuGroup extends SvelteComponentTyped<
|
|
ContextMenuGroupProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|