module Coco class Tooltip < Coco::Component attr_reader :text def initialize(text:, **) @text = text end end end