Sha256: 30a083cc287a4b66f7334ce2f033bab687c8702c6e1c1f9344da5122ad2aa9d2
Contents?: true
Size: 1.04 KB
Versions: 12
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class AdjustmentsOff < 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 6v2') s.path(d: 'M6 12v8') s.path(d: 'M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0') s.path(d: 'M12 4v4m0 4v2') s.path(d: 'M12 18v2') 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 9v5m0 4v2') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems