Sha256: c0ad2a5030b52d83689ab96e7d432bcc9462497d6e70b584d93fde57fa9d2a50
Contents?: true
Size: 465 Bytes
Versions: 618
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true module Playbook module PbTable class TableRow < Playbook::KitBase 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
618 entries across 618 versions & 1 rubygems