Sha256: 0c88e93618a6650a30f523122a469a4b488c70b7d2142d1e65c230f33eb35cb2
Contents?: true
Size: 719 Bytes
Versions: 14
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ReceiptText < 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: '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
14 entries across 14 versions & 2 rubygems