Sha256: 41f8874529fb25845891c6495d6f0d16aa40d4d537d29bdf05e056e86db16abd
Contents?: true
Size: 616 Bytes
Versions: 18
Compression:
Stored size: 616 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoonStar < 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: 'M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9') s.path(d: 'M20 3v4') s.path(d: 'M22 5h-4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems