Class: PhlexIcons::Tabler::CreditCardOff

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/tabler/credit_card_off.rb

Instance Attribute Summary

Attributes inherited from Base

#variant

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Methods inherited from Base

#initialize, #view_template

Constructor Details

This class inherits a constructor from PhlexIcons::Tabler::Base

Instance Method Details

#filledObject

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/phlex-icons/tabler/credit_card_off.rb', line 6

def filled
  raise NotImplementedError
end

#outlineObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/phlex-icons/tabler/credit_card_off.rb', line 10

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