in src/components/ControlButton.tsx [49:55]
function evaluateSize() {
if (window.innerWidth >= l && showIconOnly) {
setShowIconOnly(false);
} else if (window.innerWidth < l && !showIconOnly) {
setShowIconOnly(true);
}
}