Version: 0.0.01.0.01.0.11.0.21.0.31.0.41.1.01.1.11.1.21.1.31.2.01.2.11.3.01.4.01.4.11.5.01.6.01.6.11.6.21.7.01.8.01.8.11.8.21.9.01.9.11.9.21.9.32.0.0-alpha.02.0.0-alpha.12.0.0-beta.02.0.0-beta.12.0.02.0.12.0.22.0.32.1.12.2.02.3.02.3.12.3.22.3.33.0.0-alpha.03.0.0-beta.03.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.43.0.03.0.13.0.23.0.33.0.43.1.03.2.03.2.13.3.03.3.13.3.23.4.03.4.13.4.23.4.33.4.43.5.03.5.13.5.23.6.03.6.13.6.23.6.33.6.43.6.53.6.63.6.73.7.03.7.13.7.24.0.0-beta.14.0.0-beta.24.0.14.0.24.0.34.0.44.0.54.1.04.1.14.1.24.1.34.1.44.2.04.2.14.2.24.3.04.3.1
"use strict";
exports.__esModule = true;
exports["default"] = size;
/**
* Shorthand to set the height and width properties in a single statement.
* @example
* // Styles as object usage
* const styles = {
* ...size('300px', '250px')
* }
*
* // styled-components usage
* const div = styled.div`
* ${size('300px', '250px')}
* `
* // CSS as JS Output
* div {
* 'height': '300px',
* 'width': '250px',
*/
function size(height, width) {
if (width === void 0) {
width = height;
}
return {
height: height,
width: width
};
module.exports = exports.default;