# frozen_string_literal: true module FormElements class ToggleComponent < ViewComponent::Base def initialize(enabled:) @enabled = !!enabled end end end