JSFiddle - React, Tailwind, and code Playground
JavaScript
function setElementSize({
width = 100,
height = width * 2,
units = '%',
selector = '.root'
} = {}) {
console.log('width:', width);
console.log('height:', height);
console.log('units:', units);
console.log('selector:', selector);
}
setElementSize({units: 'px', selector: 'root'});