mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
21 lines
418 B
TypeScript
21 lines
418 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export type ContextMenuRadioGroupProps = {
|
|
/**
|
|
* Set the selected radio group id
|
|
* @default ""
|
|
*/
|
|
selectedId?: string;
|
|
|
|
/**
|
|
* Specify the label text
|
|
* @default ""
|
|
*/
|
|
labelText?: string;
|
|
};
|
|
|
|
export default class ContextMenuRadioGroup extends SvelteComponentTyped<
|
|
ContextMenuRadioGroupProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|