Class: Phlex::Icons::Iconoir::Medal1st

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/medal_1st.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Constructor Details

This class inherits a constructor from Phlex::Icons::Iconoir::Base

Instance Method Details

#regularObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/phlex/icons/iconoir/icons/medal_1st.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    stroke_width: @stroke_width,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d:
        "M14.2718 10.445L18 2M9.31612 10.6323L5 2M12.7615 10.0479L8.835 2M14.36 2L13.32 4.5M6 16C6 19.3137 8.68629 22 12 22C15.3137 22 18 19.3137 18 16C18 12.6863 15.3137 10 12 10C8.68629 10 6 12.6863 6 16Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M10.5 15L12.5 13.5V18.5",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/phlex/icons/iconoir/icons/medal_1st.rb', line 28

def solid
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M13.6672 1.71213C13.8263 1.32969 14.2653 1.14863 14.6477 1.30772C15.0302 1.46682 15.2112 1.90582 15.0521 2.28826L14.0121 4.78826C13.8531 5.17071 13.414 5.35176 13.0316 5.19267C12.6492 5.03357 12.4681 4.59457 12.6272 4.21213L13.6672 1.71213ZM17.3136 1.6973C17.4808 1.31837 17.9236 1.1468 18.3026 1.31408C18.6815 1.48137 18.8531 1.92416 18.6858 2.30309L15.251 10.0834C17.3366 11.2319 18.7497 13.451 18.7497 16.0002C18.7497 19.7281 15.7276 22.7502 11.9997 22.7502C8.27175 22.7502 5.24968 19.7281 5.24968 16.0002C5.24968 13.6261 6.47537 11.5382 8.32849 10.3349L4.32886 2.33561C4.14361 1.96512 4.29378 1.51462 4.66427 1.32938C5.03475 1.14413 5.48525 1.2943 5.6705 1.66479L9.66966 9.66314C10.2603 9.44589 10.8898 9.30887 11.5448 9.26528L8.16062 2.32906C7.979 1.9568 8.13354 1.50777 8.50581 1.32614C8.87808 1.14452 9.3271 1.29906 9.50873 1.67133L13.2641 9.36843C13.4675 9.40697 13.6676 9.45463 13.8641 9.51097L17.3136 1.6973ZM12.0499 12.9C12.2771 12.7296 12.5812 12.7021 12.8353 12.8292C13.0894 12.9562 13.2499 13.2159 13.2499 13.5V18.5C13.2499 18.9142 12.9141 19.25 12.4999 19.25C12.0856 19.25 11.7499 18.9142 11.7499 18.5V15L10.9499 15.6C10.6185 15.8485 10.1484 15.7814 9.89986 15.45C9.65134 15.1186 9.71849 14.6485 10.0499 14.4L12.0499 12.9Z",
      fill: "currentColor"
    )
  end
end