Files
Readarr/frontend/src/Helpers/Props/tooltipPositions.js
2017-09-05 23:00:26 -04:00

12 lines
174 B
JavaScript

export const TOP = 'top';
export const RIGHT = 'right';
export const BOTTOM = 'bottom';
export const LEFT = 'left';
export const all = [
TOP,
RIGHT,
BOTTOM,
LEFT
];