carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
23 lines (18 loc) • 498 B
TypeScript
import { SvelteComponentTyped } from "svelte";
export type ProfileMenuDetailProps = {
/**
* Specify the label describing the value (for example, "Plan" or "Location").
* @default undefined
*/
label?: string;
action?: (this: void) => void;
children?: (this: void) => void;
};
export default class ProfileMenuDetail extends SvelteComponentTyped<
ProfileMenuDetailProps,
Record<string, any>,
{
default: Record<string, never>;
action: Record<string, never>;
}
> {}