Sha256: 8acb108faf0aaaea72165cab37897644a3bdec2584be6698a1360607c5c93e04
Contents?: true
Size: 726 Bytes
Versions: 26
Compression:
Stored size: 726 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ReceiptText < 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: 'M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z' ) s.path(d: 'M14 8H8') s.path(d: 'M16 12H8') s.path(d: 'M13 16H8') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems