Sha256: 20ec94331bb40ec06042926bbe5615b3122fd51b6067db075ca90ef3acee1c08
Contents?: true
Size: 700 Bytes
Versions: 14
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ReceiptEuro < 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: 'M8 12h5') s.path(d: 'M16 9.5a4 4 0 1 0 0 5.2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems