Class: PhlexIcons::Huge::ChartLineData02

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/huge/chart_line_data_02.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::Huge::Base

Instance Method Details

#strokeObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/phlex-icons/huge/chart_line_data_02.rb', line 7

def stroke
  svg(
    **attrs,
    viewbox: '0 0 24 24',
    fill: 'none',
    xmlns: 'http://www.w3.org/2000/svg'
  ) do |s|
    s.circle(
      cx: '8.5',
      cy: '10.5',
      r: '1.5',
      stroke: 'currentColor',
      stroke_width: '1.5'
    )
    s.circle(
      cx: '14.5',
      cy: '15.5',
      r: '1.5',
      stroke: 'currentColor',
      stroke_width: '1.5'
    )
    s.circle(
      cx: '18.5',
      cy: '7.5',
      r: '1.5',
      stroke: 'currentColor',
      stroke_width: '1.5'
    )
    s.path(
      d:
        'M15.4341 14.2963L18 9M9.58251 11.5684L13.2038 14.2963M3 19L7.58957 11.8792',
      stroke: 'currentColor',
      stroke_width: '1.5',
      stroke_linecap: 'round',
      stroke_linejoin: 'round'
    )
    s.path(
      d:
        'M20 21H9C5.70017 21 4.05025 21 3.02513 19.9749C2 18.9497 2 17.2998 2 14V3',
      stroke: 'currentColor',
      stroke_width: '1.5',
      stroke_linecap: 'round'
    )
  end
end