Sha256: a0a1437ecd4da515a963cf048318b4888ffb309592e5ede7f59950edd29440c5
Contents?: true
Size: 627 Bytes
Versions: 3
Compression:
Stored size: 627 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CloudLightningIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) 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
Version data entries
3 entries across 3 versions & 1 rubygems