app/pb_kits/playbook/pb_card/card_header.rb



# frozen_string_literal: true

module Playbook
  module PbCard
    class CardHeader < Playbook::KitBase
      prop :header_color, type: Playbook::Props::String,
                          default: "category_1"

      def classname
        generate_classname("pb_card_header_kit", header_color)
      end
    end
  end
end