@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
22 lines (16 loc) • 489 B
JavaScript
import { DIRECTIONS } from "../../utils/layout/consts";
const getDirectionSpacingTemplate = direction => {
switch (direction) {
case DIRECTIONS.COLUMN:
return "0 0 __spacing__ 0";
case DIRECTIONS.ROW:
return "0 __spacing__ 0 0";
case DIRECTIONS.COLUMNREVERSE:
return "__spacing__ 0 0 0";
case DIRECTIONS.ROWREVERSE:
return "0 0 0 __spacing__";
default:
return "0 0 __spacing__ 0";
}
};
export default getDirectionSpacingTemplate;