Sha256: 10ac1dd39d808ac704e18dc85900ea90d25084ef56e8b1b08569bb415d5d7989
Contents?: true
Size: 647 Bytes
Versions: 26
Compression:
Stored size: 647 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CloudMoon < 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: 'M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197') s.path(d: 'M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems