carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
21 lines (17 loc) • 384 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
export interface ContextMenuGroupProps {
/**
* @default []
*/
selectedIds?: ReadonlyArray<string>;
/**
* Specify the label text
* @default ""
*/
labelText?: string;
}
export default class ContextMenuGroup extends SvelteComponentTyped<
ContextMenuGroupProps,
Record<string, any>,
{ default: {} }
> {}