carbon-components-svelte/types/ContextMenu/ContextMenuRadioGroup.svelte.d.ts
2023-07-19 08:37:54 -07:00

21 lines
420 B
TypeScript

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,
Record<string, any>,
{ default: {} }
> {}