9 lines
188 B
Ruby
9 lines
188 B
Ruby
|
module ClipboardHelper
|
||
|
def clipboard_button
|
||
|
content_tag :button,
|
||
|
icon('clipboard'),
|
||
|
class: 'btn btn-xs btn-clipboard js-clipboard-trigger',
|
||
|
type: :button
|
||
|
end
|
||
|
end
|