8 lines
180 B
Ruby
8 lines
180 B
Ruby
class StatusTextComponent < ViewComponent::Base
|
|
def initialize(text:, icon_name:, icon_color:)
|
|
@text = text
|
|
@icon_name = icon_name
|
|
@icon_color = icon_color
|
|
end
|
|
end
|