Type Alias Props
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;
}
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;
}
Properties
OptionalallowLocking
allowLocking?: boolean
Optionalclasses
OptionalclickToOpen
clickToOpen?: boolean
Optionalduration
duration?: number
OptionaleasingIn
easingIn?: any
OptionaleasingOut
easingOut?: any
Optionalitems
items?: Iterable<
{
condition?: boolean
| (() => boolean);
icon: any;
svelte: any;
tooltip?: string;
},
>
{
condition?: boolean
| (() => boolean);
icon: any;
svelte: any;
tooltip?: string;
},
>
Optionalside
side?: "left" | "right"
OptionalsideAbs
sideAbs?: boolean
Optionalstyles
styles?: { [key: string]: string }
OptionaltooltipDirection
tooltipDirection?: string
Optionaltooltips
tooltips?: boolean
Optionaltop
top?: string | number
OptionaltopUnit
topUnit?: string
OptionalzIndex
zIndex?: number
Props type alias for associated component.