Sha256: c9a3c3a85abdc4efdb491cbb13f39dea1b0521d2e04475bd30931e1a20660ce3
Contents?: true
Size: 751 Bytes
Versions: 12
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class WindElectricity < 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: 'M20 7l-3 5h4l-3 5') s.path(d: 'M3 16h4a2 2 0 1 1 0 4') s.path(d: 'M3 12h8a2 2 0 1 0 0 -4') s.path(d: 'M3 8h3a2 2 0 1 0 0 -4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems