Plugins
Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0
ContextMenuSeparator
Visual separator between context menu groups.
Import
import { ContextMenuSeparator } from "@dartwic/interface-sdk/ui";Declaration
export const ContextMenuSeparator: HostComponent<HostComponentProps>;HostComponentProps
Shared presentation and native pass-through props accepted by host components.
export interface HostComponentProps {
/** Additional Tailwind or host CSS classes. */
className?: string;
/** Child content rendered by the host component. */
children?: HostNode;
/** Optional DOM identifier. */
id?: string;
/** Inline style values passed to the host component. */
style?: Record<string, unknown>;
[name: string]: unknown;
}| Prop | Type | Requirement | Description |
|---|---|---|---|
className | string | Optional | Additional Tailwind or host CSS classes. |
children | HostNode | Optional | Child content rendered by the host component. |
id | string | Optional | Optional DOM identifier. |
style | Record<string, unknown> | Optional | Inline style values passed to the host component. |
[name | unknown | Required |