Sha256: 19a70c30e90627d9f49d35b6ce16c8116c7c131a2f5dcad63dc1b17dbaba337e
Contents?: true
Size: 964 Bytes
Versions: 14
Compression:
Stored size: 964 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CreditCardOff < 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: 'M3 3l18 18') s.path(d: 'M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87') s.path( d: 'M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87' ) s.path(d: 'M3 11l8 0') s.path(d: 'M15 11l6 0') s.path(d: 'M7 15l.01 0') s.path(d: 'M11 15l2 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems