Sha256: 690baff4fa98f34618850a972bb1d1258f5fa7d276df206642280b02adfe1e1f
Contents?: true
Size: 765 Bytes
Versions: 14
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ReceiptJapaneseYen < 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: 'm12 10 3-3') s.path(d: 'm9 7 3 3v7.5') s.path(d: 'M9 11h6') s.path(d: 'M9 15h6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems