Sha256: f7b37e574c51c7388046745bebdd2ae5615129be580c40f120ae5f067e543195
Contents?: true
Size: 675 Bytes
Versions: 70
Compression:
Stored size: 675 Bytes
Contents
# frozen_string_literal: true module Primer module OpenProject class BorderGrid # A single cell inside the BorderGrid # A cell can contain for example an action list or a status badge class Cell < Primer::Component status :open_project # @param system_arguments [Hash] <%= link_to_system_arguments_docs %> def initialize(**system_arguments) @system_arguments = system_arguments @system_arguments[:tag] = "div" @system_arguments[:classes] = class_names( @system_arguments[:classes], "BorderGrid-cell" ) end end end end end
Version data entries
70 entries across 70 versions & 1 rubygems