Class: PhlexIcons::Material::Shop2

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/shop_2.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::Material::Base

Instance Method Details

#filledObject



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/phlex-icons/material/shop_2.rb', line 7

def filled
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z')
    s.path(
      d:
        'M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z'
    )
  end
end

#outlinedObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/phlex-icons/material/shop_2.rb', line 21

def outlined
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z')
    s.path(
      d:
        'M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z'
    )
    s.path(d: 'M12 8v7l5.5-3.5z')
  end
end

#roundObject



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/phlex-icons/material/shop_2.rb', line 36

def round
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H3V10c0-.55-.45-1-1-1z'
    )
    s.path(
      d:
        'M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 11.09V8.91c0-.39.44-.63.77-.42l4.07 2.59c.31.2.31.65 0 .84l-4.07 2.59a.503.503 0 0 1-.77-.42z'
    )
  end
end

#sharpObject



53
54
55
56
57
58
59
60
61
62
# File 'lib/phlex-icons/material/shop_2.rb', line 53

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M3 9H1v13h18v-2H3z')
    s.path(d: 'M18 5V1h-8v4H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z')
  end
end

#two_toneObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/phlex-icons/material/shop_2.rb', line 64

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M7 16h14V7H7v9zm5-8 5.5 3.5L12 15V8z', opacity: '.3')
    s.path(d: 'M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z')
    s.path(
      d:
        'M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z'
    )
    s.path(d: 'M12 8v7l5.5-3.5z')
  end
end