diff --git a/core/modules/image/image.admin.inc b/core/modules/image/image.admin.inc
index 7880957..76dfdc6 100644
--- a/core/modules/image/image.admin.inc
+++ b/core/modules/image/image.admin.inc
@@ -883,6 +883,13 @@ function theme_image_crop_summary($variables) {
 }
 
 /**
+ * Preprocess variables for theme('image_crop_summary').
+ */
+function template_preprocess_image_crop_summary(&$variables) {
+  $variables['summary'] = theme('image_resize_summary', $variables);
+}
+
+/**
  * Returns HTML for a summary of an image rotate effect.
  *
  * @param $variables
diff --git a/core/themes/stark/templates/image/image-crop-summary.html.twig b/core/themes/stark/templates/image/image-crop-summary.html.twig
new file mode 100644
index 0000000..16fea65
--- /dev/null
+++ b/core/themes/stark/templates/image/image-crop-summary.html.twig
@@ -0,0 +1,15 @@
+{#
+/**
+ * @file
+ * Default theme implementation for a summary of an image crop effect.
+ *
+ * Available variables:
+ * - summary: The current configuration for this crop effect.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_image_crop_summary()
+ *
+ * @ingroup themeable
+ */
+#}
+{{ summary }}
