Sha256: 530e4830a7ce2946587a97b43a25c58d2938a0d8a897d29d089e74771ac96b4f
Contents?: true
Size: 830 Bytes
Versions: 14
Compression:
Stored size: 830 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CreditCardPay < 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: 'M16 19h6') s.path(d: 'M19 16l3 3l-3 3') s.path(d: 'M7.005 15h.005') s.path(d: 'M11 15h2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems