app/pb_kits/playbook/pb_table/table_cell.rb



# frozen_string_literal: true

module Playbook
  module PbTable
    class TableCell < Playbook::KitBase
      prop :tag, type: Playbook::Props::Enum,
                 values: %w[table div],
                 default: "table"
      prop :text, type: Playbook::Props::String,
                  default: ""

      def classname
        generate_classname("pb_table_td")
      end
    end
  end
end