10 lines
171 B
Ruby
10 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
module FormElements
|
|
class ToggleComponent < ViewComponent::Base
|
|
def initialize(enabled:)
|
|
@enabled = !!enabled
|
|
end
|
|
end
|
|
end
|