shou2017.com
JP

How to embed icons in button_to helper in Rails

Tue Jan 1, 2019
Sat Aug 10, 2024

Environment

  • macOS Mojave 10.14.1
  • Rails 5.1.6
  • ruby 2.5.0
  • Font Awesome

What I want to do: I want to embed an icon in a button_to helper as shown below.

How to embed icons in button_to helper in Rails

It’s easy to do using a block.

<%= button_to new_user_registration_path, :class => 'ui button', :method => :get do %>
  <i class="bookmark icon"></i> Bookmark
<% end %>
See Also