Class: PhlexIcons::Material::TurnedIn

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/turned_in.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/turned_in.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: 'M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z')
  end
end

#outlinedObject



17
18
19
20
21
22
23
24
25
# File 'lib/phlex-icons/material/turned_in.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: 'M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z')
  end
end

#roundObject



27
28
29
30
31
32
33
34
35
# File 'lib/phlex-icons/material/turned_in.rb', line 27

def round
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z')
  end
end

#sharpObject



37
38
39
40
41
42
43
44
45
# File 'lib/phlex-icons/material/turned_in.rb', line 37

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M19 3H5v18l7-3 7 3V3z')
  end
end

#two_toneObject



47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/phlex-icons/material/turned_in.rb', line 47

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z'
    )
    s.path(d: 'm7 17.97 4.21-1.81.79-.34.79.34L17 17.97V5H7z', opacity: '.3')
  end
end