Sha256: 1dc2fbfdf7ff3c2e32c3ace940610cc131800adafbfd10ea62ebcda04f850ddb
Contents?: true
Size: 798 Bytes
Versions: 12
Compression:
Stored size: 798 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ColorPickerOff < Base def filled raise NotImplementedError end def outline svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path(d: 'M11 7l6 6') s.path( d: 'M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6' ) s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems