Class: PhlexIcons::Material::Eject

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/eject.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
# File 'lib/phlex-icons/material/eject.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: 'M5 17h14v2H5zm7-12L5.33 15h13.34z')
  end
end

#outlinedObject



17
18
19
20
21
22
23
24
25
26
27
# File 'lib/phlex-icons/material/eject.rb', line 17

def outlined
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d: 'M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z'
    )
  end
end

#roundObject



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/phlex-icons/material/eject.rb', line 29

def round
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M6 17h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.17-10.75-4.8 7.2c-.45.66.03 1.55.83 1.55h9.6c.8 0 1.28-.89.83-1.55l-4.8-7.2a.99.99 0 0 0-1.66 0z'
    )
  end
end

#sharpObject



42
43
44
45
46
47
48
49
50
# File 'lib/phlex-icons/material/eject.rb', line 42

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z')
  end
end

#two_toneObject



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

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M12 8.6 9.07 13h5.86z', opacity: '.3')
    s.path(
      d: 'M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z'
    )
  end
end