app/pb_kits/playbook/pb_list/item.rb



# frozen_string_literal: true

module Playbook
  module PbList
    class Item
      include Playbook::Props

      prop :tabindex

      partial "pb_list/item"

      def classname
        generate_classname("pb_item_kit")
      end
    end
  end
end