@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
19 lines (18 loc) • 381 B
JavaScript
const justifyToJustifyContent = {
center: "center",
start: "flex-start",
end: "flex-end",
"space-around": "space-around",
"space-between": "space-between"
};
const alignToAlignItems = {
center: "center",
start: "flex-start",
end: "flex-end",
stretch: "stretch"
};
export {
alignToAlignItems,
justifyToJustifyContent
};
//# sourceMappingURL=flexHelpers.js.map