Sha256: 5745ba8077ee6523fac5681b291a5e5294759430fbaaea0a963fbcb691ed490d
Contents?: true
Size: 805 Bytes
Versions: 14
Compression:
Stored size: 805 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CalendarRange < 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.rect(width: '18', height: '18', x: '3', y: '4', rx: '2') s.path(d: 'M16 2v4') s.path(d: 'M3 10h18') s.path(d: 'M8 2v4') s.path(d: 'M17 14h-6') s.path(d: 'M13 18H7') s.path(d: 'M7 14h.01') s.path(d: 'M17 18h.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems