mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
22 lines
436 B
TypeScript
22 lines
436 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface ContextMenuRadioGroupProps {
|
|
/**
|
|
* Set the selected radio group id
|
|
* @default ""
|
|
*/
|
|
selectedId?: string;
|
|
|
|
/**
|
|
* Specify the label text
|
|
* @default ""
|
|
*/
|
|
labelText?: string;
|
|
}
|
|
|
|
export default class ContextMenuRadioGroup extends SvelteComponentTyped<
|
|
ContextMenuRadioGroupProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|