Plugins
Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0
SeparatorProps
Props accepted by a visual separator.
Import
import type { SeparatorProps } from "@dartwic/interface-sdk/ui";Declaration
export interface SeparatorProps extends HostComponentProps {
/** Separator direction. */
orientation?: "horizontal" | "vertical";
/** Whether the separator is purely decorative. */
decorative?: boolean;
}Members
| Name | Type | Requirement | Description |
|---|---|---|---|
orientation | "horizontal" | "vertical" | Optional | Separator direction. |
decorative | boolean | Optional | Whether the separator is purely decorative. |