carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
22 lines (18 loc) • 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: {} }
> {}