# frozen_string_literal: true module Yattho module Forms # :nodoc: class CheckBoxGroup < BaseComponent delegate :builder, :form, to: :@input def initialize(input:) @input = input end end end end