diff --git a/app/assets/images/trash.svg b/app/assets/images/trash.svg
new file mode 100644
index 000000000..fc95dc1a8
--- /dev/null
+++ b/app/assets/images/trash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/views/comments/edit.html.erb b/app/views/comments/edit.html.erb
index a4ecf07df..23aa3d499 100644
--- a/app/views/comments/edit.html.erb
+++ b/app/views/comments/edit.html.erb
@@ -9,13 +9,13 @@
Save
<% end %>
<%= link_to bucket_bubble_comment_path(@bubble.bucket, @bubble, @comment), class: "btn btn--small", data: { form_target: "cancel" } do %>
- <%= image_tag "close.svg", aria: { hidden: true }, size: 16 %>
+ <%= image_tag "remove-med.svg", aria: { hidden: true }, size: 16 %>
Cancel
<% end %>
<%= tag.button type: :submit, class: "btn btn--small btn--negative flex-item-justify-end", form: dom_id(@comment, :delete_form),
data: { turbo_confirm: "Are you sure you want to delete this comment?" } do %>
- <%= image_tag "remove.svg", aria: { hidden: true }, size: 16 %>
+ <%= image_tag "trash.svg", aria: { hidden: true }, size: 16 %>
Delete
<% end %>