@hydroperx/metrodesign
    Preparing search index...

    Function DesktopGroup

    • DesktopGroup is used for displaying UI only when the screen orientation is landscape.

      Parameters

      • params: {
            children?: ReactNode;
            className?: string;
            id?: string;
            inline?: boolean;
            ref?: Ref<HTMLDivElement | null>;
            style?: CSSProperties;
            wheelHorizontal?: boolean;
            wheelVertical?: boolean;
        }
        • Optionalchildren?: ReactNode
        • OptionalclassName?: string
        • Optionalid?: string
        • Optionalinline?: boolean

          Whether the group is displayed inline.

        • Optionalref?: Ref<HTMLDivElement | null>
        • Optionalstyle?: CSSProperties
        • OptionalwheelHorizontal?: boolean

          Enables horizontal scrolling through the mouse wheel.

        • OptionalwheelVertical?: boolean

          For vertically-scrollable groups, makes vertical scrolling through the mouse wheel more faster and smoother.

      Returns ReactNode