Class: Phlex::Icons::Iconoir::LitecoinCircle

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/litecoin_circle.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
27
28
29
30
31
# File 'lib/phlex/icons/iconoir/icons/litecoin_circle.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    stroke_width: @stroke_width,
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d: "M10.5 7V16.4C10.5 16.7314 10.7686 17 11.1 17H15.5",
      stroke: "currentColor",
      stroke_linecap: "round"
    )
    s.path(
      d: "M8.5 13L13 11",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/phlex/icons/iconoir/icons/litecoin_circle.rb', line 33

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:
        "M1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12ZM10.5 6.25C10.9142 6.25 11.25 6.58579 11.25 7V10.957L12.6954 10.3146C13.0739 10.1464 13.5171 10.3169 13.6854 10.6954C13.8536 11.0739 13.6831 11.5171 13.3046 11.6854L11.25 12.5985V16.25H15.5C15.9142 16.25 16.25 16.5858 16.25 17C16.25 17.4142 15.9142 17.75 15.5 17.75H11.1C10.3544 17.75 9.75 17.1456 9.75 16.4V13.2652L8.8046 13.6854C8.42609 13.8536 7.98287 13.6831 7.81464 13.3046C7.64641 12.9261 7.81688 12.4829 8.1954 12.3146L9.75 11.6237V7C9.75 6.58579 10.0858 6.25 10.5 6.25Z",
      fill: "currentColor"
    )
  end
end