mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
12 lines
288 B
Ruby
12 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AdminTooltipComponent < ViewComponent::Base
|
|
def initialize(text:, link_text:, placement: "top", link: "", link_class: "")
|
|
@text = text
|
|
@link_text = link_text
|
|
@placement = placement
|
|
@link = link
|
|
@link_class = link_class
|
|
end
|
|
end
|