Sha256: 1f5f8559875391d55124e6448d8db753a3f1e2dd7464a73db9e1885caf3ac4b7
Contents?: true
Size: 697 Bytes
Versions: 10
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Calendar1 < 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: 'M11 14h1v4') s.path(d: 'M16 2v4') s.path(d: 'M3 10h18') s.path(d: 'M8 2v4') s.rect(x: '3', y: '4', width: '18', height: '18', rx: '2') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems