Sha256: 9a67e7001de9faf03cac448f98c0ee0ec5d624f856841383127e3f5d7cd6c092
Contents?: true
Size: 512 Bytes
Versions: 165
Compression:
Stored size: 512 Bytes
Contents
# frozen_string_literal: true module Playbook module PbTable class TableRow include Playbook::Props partial "pb_table/table_row" prop :side_highlight_color, type: Playbook::Props::String, default: "none" def classname generate_classname("pb_table_row_kit", side_highlight_class) end def side_highlight_class side_highlight_color.present? ? "side_highlight_#{side_highlight_color}" : nil end end end end
Version data entries
165 entries across 165 versions & 1 rubygems