Sha256: 316f66be9ea9956846787db040005f96f60c653a3ba4b70987f3179beb8f7028
Contents?: true
Size: 1.08 KB
Versions: 12
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class WiperWash < 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: 'M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0') s.path(d: 'M12 20l0 -14') s.path(d: 'M4 6a4 4 0 0 1 .4 -1.8') s.path(d: 'M7 2.1a4 4 0 0 1 2 0') s.path(d: 'M12 6a4 4 0 0 0 -.4 -1.8') s.path(d: 'M12 6a4 4 0 0 1 .4 -1.8') s.path(d: 'M15 2.1a4 4 0 0 1 2 0') s.path(d: 'M20 6a4 4 0 0 0 -.4 -1.8') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems