Skip to main content
Version: 4.x.x (latest)

$position

Props with scale option

PropScale
zIndextheme.zIndices
toptheme.spacings
righttheme.spacings
bottomtheme.spacings
lefttheme.spacings

Types

export type DesygnaSystemPositionProps = {
position?: DesygnaGenericProp<CSS.Properties["position"]>;
zIndex?: DesygnaGenericProp<CSS.Properties["zIndex"] | DesygnaThemeZIndices | number>;
top?: DesygnaGenericProp<CSS.Properties["top"] | DesygnaThemeSpace | number>;
right?: DesygnaGenericProp<CSS.Properties["right"] | DesygnaThemeSpace | number>;
bottom?: DesygnaGenericProp<CSS.Properties["bottom"] | DesygnaThemeSpace | number>;
left?: DesygnaGenericProp<CSS.Properties["left"] | DesygnaThemeSpace | number>;
};