<% if @article.published? %>
<%= render partial: "articles/reaction_button",
locals: {
category: :like,
description: "Heart",
image_path: "heart.svg",
image_active_path: "heart-filled.svg"
} %>
<%= render partial: "articles/reaction_button",
locals: {
category: :unicorn,
description: "Unicorn",
image_path: "unicorn.svg",
image_active_path: "unicorn-filled.svg"
} %>
<%= render partial: "articles/reaction_button",
locals: {
category: :readinglist,
description: "Reading list",
image_path: "save.svg",
image_active_path: "save-filled.svg"
} %>
<% end %>