module Coco class Placeholder < Coco::Component include Concerns::AcceptsOptions accepts_option :size, from: [:auto, :full], default: :auto accepts_option :prose, from: [true, false], default: false accepts_option :boxed, from: [true, false], default: true attr_reader :text_content def initialize(text_content: nil, **) @text_content = text_content end end end