Sha256: 8b6e5e9f2fd3c54ea5edc32f722ed02b6df9ca4b28eab7ace4031efb068cc0d5
Contents?: true
Size: 784 Bytes
Versions: 26
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class WalletCards < 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.rect(width: '18', height: '18', x: '3', y: '3', rx: '2') s.path(d: 'M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2') s.path( d: 'M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems