export default { row: { topLeft: { alignItems: 'flex-start', justifyContent: 'flex-start', }, topCenter: { alignItems: 'flex-start', justifyContent: 'center', }, topRight: { alignItems: 'flex-start', justifyContent: 'flex-end', }, centerLeft: { alignItems: 'center', justifyContent: 'flex-start', }, centerCenter: { alignItems: 'center', justifyContent: 'center', }, centerRight: { alignItems: 'center', justifyContent: 'flex-end', }, bottomLeft: { alignItems: 'flex-end', justifyContent: 'flex-start', }, bottomCenter: { alignItems: 'flex-end', justifyContent: 'center', }, bottomRight: { alignItems: 'flex-end', justifyContent: 'flex-end', }, }, 'row-reverse': { topLeft: { alignItems: 'flex-start', justifyContent: 'flex-end', }, topCenter: { alignItems: 'flex-start', justifyContent: 'center', }, topRight: { alignItems: 'flex-start', justifyContent: 'flex-start', }, centerLeft: { alignItems: 'center', justifyContent: 'flex-end', }, centerCenter: { alignItems: 'center', justifyContent: 'center', }, centerRight: { alignItems: 'center', justifyContent: 'flex-start', }, bottomLeft: { alignItems: 'flex-end', justifyContent: 'flex-end', }, bottomCenter: { alignItems: 'flex-end', justifyContent: 'center', }, bottomRight: { alignItems: 'flex-end', justifyContent: 'flex-start', }, }, column: { topLeft: { alignItems: 'flex-start', justifyContent: 'flex-start', }, topCenter: { alignItems: 'center', justifyContent: 'flex-start', }, topRight: { alignItems: 'flex-end', justifyContent: 'flex-start', }, centerLeft: { alignItems: 'flex-start', justifyContent: 'center', }, centerCenter: { alignItems: 'center', justifyContent: 'center', }, centerRight: { alignItems: 'flex-end', justifyContent: 'center', }, bottomLeft: { alignItems: 'flex-start', justifyContent: 'flex-end', }, bottomCenter: { alignItems: 'center', justifyContent: 'flex-end', }, bottomRight: { alignItems: 'flex-end', justifyContent: 'flex-end', }, }, 'column-reverse': { topLeft: { alignItems: 'flex-start', justifyContent: 'flex-end', }, topCenter: { alignItems: 'center', justifyContent: 'flex-end', }, topRight: { alignItems: 'flex-end', justifyContent: 'flex-end', }, centerLeft: { alignItems: 'flex-start', justifyContent: 'center', }, centerCenter: { alignItems: 'center', justifyContent: 'center', }, centerRight: { alignItems: 'flex-end', justifyContent: 'center', }, bottomLeft: { alignItems: 'flex-start', justifyContent: 'flex-start', }, bottomCenter: { alignItems: 'center', justifyContent: 'flex-start', }, bottomRight: { alignItems: 'flex-end', justifyContent: 'flex-start', }, }, };