Sha256: 2933e7090bb0dc674adc7d6c5c38868558e5ec6de16d1e4be99db035bb7cd90e
Contents?: true
Size: 809 Bytes
Versions: 26
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Wallet < 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: 'M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1' ) s.path(d: 'M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems