semantic-ui-react
Version:
The official Semantic-UI-React integration.
14 lines • 436 B
JavaScript
import _invert from "lodash-es/invert";
import _keys from "lodash-es/keys";
export var positionsMapping = {
'top center': 'top',
'top left': 'top-start',
'top right': 'top-end',
'bottom center': 'bottom',
'bottom left': 'bottom-start',
'bottom right': 'bottom-end',
'right center': 'right',
'left center': 'left'
};
export var positions = _keys(positionsMapping);
export var placementMapping = _invert(positionsMapping);