+ {singleElement && (
+ <>
+ {cropMode && (
+
+ {t("labels.unCroppedDimension")}
+
+ )}
+
+ {appState.croppingElementId &&
+ isImageElement(singleElement) &&
+ unCroppedDimension && (
+
+ {t("stats.width")}
+ {round(unCroppedDimension.width, 2)}
+
+ )}
+
+ {appState.croppingElementId &&
+ isImageElement(singleElement) &&
+ unCroppedDimension && (
+
+ {t("stats.height")}
+ {round(unCroppedDimension.height, 2)}
+
+ )}
+
+
+ {appState.croppingElementId
+ ? t("labels.imageCropping")
+ : t(`element.${singleElement.type}`)}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {!isElbowArrow(singleElement) && (
+
+
+
+ )}
+
+
+
+ >
+ )}
+
+ {multipleElements && (
+ <>
+ {elementsAreInSameGroup(multipleElements) && (
+ {t("element.group")}
+ )}
+
+
+ {t("stats.shapes")}
+ {selectedElements.length}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )}
+
+