Sha256: 86f5bc99a926a8901255e33ca5cc757f4e74b8531467bbb0dd818e4482005ae5
Contents?: true
Size: 641 Bytes
Versions: 3
Compression:
Stored size: 641 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MountainSnowIcon < 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: "m8 3 4 8 5-5 5 15H2L8 3z") s.path(d: "M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems