Sha256: f9ffdd9e53fc1e83511dc25fe2478e3fd571691c9e45b1a962388158f040d96d
Contents?: true
Size: 634 Bytes
Versions: 14
Compression:
Stored size: 634 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MountainSnow < 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: '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 end
Version data entries
14 entries across 14 versions & 2 rubygems