Props type alias for associated component.

type Props = {
    allowLocking?: boolean;
    classes?: Iterable<string>;
    clickToOpen?: boolean;
    duration?: number;
    easingIn?: any;
    easingOut?: any;
    items?: Iterable<
        {
            condition?: boolean
            | (() => boolean);
            icon: any;
            svelte: any;
            tooltip?: string;
        },
    >;
    side?: "left"
    | "right";
    sideAbs?: boolean;
    styles?: { [key: string]: string };
    tooltipDirection?: string;
    tooltips?: boolean;
    top?: string | number;
    topUnit?: string;
    zIndex?: number;
}
Index
allowLocking?: boolean
classes?: Iterable<string>
clickToOpen?: boolean
duration?: number
easingIn?: any
easingOut?: any
items?: Iterable<
    {
        condition?: boolean
        | (() => boolean);
        icon: any;
        svelte: any;
        tooltip?: string;
    },
>
side?: "left" | "right"
sideAbs?: boolean
styles?: { [key: string]: string }
tooltipDirection?: string
tooltips?: boolean
top?: string | number
topUnit?: string
zIndex?: number