Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

ScrollBarProps

Props accepted by a scroll bar.

Import

import type { ScrollBarProps } from "@dartwic/interface-sdk/ui";

Declaration

export interface ScrollBarProps extends HostComponentProps {
    /** Scroll-bar direction. */
    orientation?: "horizontal" | "vertical";
}

Members

NameTypeRequirementDescription
orientation"horizontal" | "vertical"OptionalScroll-bar direction.