Sha256: d3112e9115bde88e4e432d90f4dca980dfed02563d90cd25028e310bf8416b25
Contents?: true
Size: 727 Bytes
Versions: 18
Compression:
Stored size: 727 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ReceiptSwissFranc < 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: 'M10 17V7h5') s.path(d: 'M10 11h4') s.path(d: 'M8 15h5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems