Sha256: d317c27ab5a254707cecd966229e8a187fc2d1f8e3cbff05586ff5813bbf6613
Contents?: true
Size: 439 Bytes
Versions: 21
Compression:
Stored size: 439 Bytes
Contents
# frozen_string_literal: true module Satis module ColorPicker class Component < ApplicationComponent attr_reader :form, :attribute, :css_variable, :css_scope def initialize(attribute:, form: nil, css_variable: nil, css_scope: ":root") # rubocop:disable Lint/MissingSuper @form = form @attribute = attribute @css_variable = css_variable @css_scope = css_scope end end end end
Version data entries
21 entries across 21 versions & 1 rubygems