Sha256: 5ac319b65fe5c2caf2a3b0170d648b2533cd9c8286fdf40fefaf24a632811400
Contents?: true
Size: 665 Bytes
Versions: 26
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Tornado < Base def view_template 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: 'M21 4H3') s.path(d: 'M18 8H6') s.path(d: 'M19 12H9') s.path(d: 'M16 16h-6') s.path(d: 'M11 20H9') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems