Sha256: d9e31bc32db88290edc285f1673fd44e04d721a13f793726e03c8625697f035e
Contents?: true
Size: 620 Bytes
Versions: 14
Compression:
Stored size: 620 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CloudLightning < 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: 'M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973') s.path(d: 'm13 12-3 5h4l-3 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems