Sha256: 8a2bf2ef2651a9c19aacc148ff4aa81e5213c3103054e2466be31172b3a282cd
Contents?: true
Size: 828 Bytes
Versions: 18
Compression:
Stored size: 828 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CreditCardRefund < Base def filled raise NotImplementedError end def outline 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: 'M12 19h-6a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5') s.path(d: 'M3 10h18') s.path(d: 'M7 15h.01') s.path(d: 'M11 15h2') s.path(d: 'M16 19h6') s.path(d: 'M19 16l-3 3l3 3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems