demarches-normaliennes/app/components/dsfr/copy_button_component.rb
2024-08-22 09:26:48 +02:00

9 lines
201 B
Ruby

# frozen_string_literal: true
class Dsfr::CopyButtonComponent < ApplicationComponent
def initialize(text:, title:, success: nil)
@text = text
@title = title
@success = success
end
end