@wix/design-system
Version:
@wix/design-system
17 lines • 459 B
JavaScript
const prefix = 'dock';
export const DATA_HOOKS = {
point: (position) => `${prefix}-point-${position}`,
};
export const DOCK_POSITION = {
TOP_LEFT: 'top-left',
TOP: 'top',
TOP_RIGHT: 'top-right',
LEFT: 'left',
CENTER: 'center',
RIGHT: 'right',
BOTTOM_LEFT: 'bottom-left',
BOTTOM: 'bottom',
BOTTOM_RIGHT: 'bottom-right',
};
export const POSITIONS = Object.values(DOCK_POSITION);
//# sourceMappingURL=Dock.constants.js.map