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