module Coco module Fields class SubmitComponent < ViewComponent::Form::SubmitComponent include Concerns::ActsAsFieldWithOptions include Coco::CoreComponentsHelper def call coco_button(**options, type: :submit) do content || value end end end end end