demarches-normaliennes/app/components/dsfr/copy_button_component.rb

10 lines
201 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2022-12-01 09:56:30 +01:00
class Dsfr::CopyButtonComponent < ApplicationComponent
def initialize(text:, title:, success: nil)
@text = text
@title = title
@success = success
end
end