Sha256: b1a46cc171ad1b170cea0dae4dc64e6e87a40323de15130bc28d4d0db4ecaee9
Contents?: true
Size: 644 Bytes
Versions: 8
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Wind < Base def view_template svg( **attrs, 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.8 19.6A2 2 0 1 0 14 16H2') s.path(d: 'M17.5 8a2.5 2.5 0 1 1 2 4H2') s.path(d: 'M9.8 4.4A2 2 0 1 1 11 8H2') end end end end end end
Version data entries
8 entries across 8 versions & 2 rubygems