Sha256: f2bde8549204b542f0817203b3739fbb52a4d1d3e2d29e1d0ad818f32ffb528b
Contents?: true
Size: 1.18 KB
Versions: 12
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength,Metrics/MethodLength module Phlex module Icons module Tabler class AdjustmentsSpark < 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: 'M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0') s.path(d: 'M6 4v4') s.path(d: 'M6 12v8') s.path(d: 'M13.879 15.312a2 2 0 1 0 -2.26 2.652') s.path(d: 'M12 4v10') s.path(d: 'M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0') s.path(d: 'M18 4v1') s.path(d: 'M18 9v2.5') s.path( d: 'M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5' ) end end end end end end # rubocop:enable Layout/LineLength,Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems