nt: PropTypes.object, // The computed style properties of the flex container. properties: PropTypes.shape(flexContainerProperties), }); /** * The Flexbox UI state. */ exports.flexbox = { // The color of the flexbox highlighter overlay. color: PropTypes.string, // The selected flex container. flexContainer: PropTypes.shape(flexContainer), // The selected flex container can also be a flex item. This object contains the // parent flex container properties. flexItemContainer: PropTypes.shape(flexContainer), // Whether or not the flexbox highlighter is highlighting the flex container. highlighted: PropTypes.bool, }; PK