Class: Phlex::Icons::Iconoir::Number8Square
- Inherits:
-
Base
- Object
- SVG
- Base
- Phlex::Icons::Iconoir::Number8Square
show all
- Defined in:
- lib/phlex/icons/iconoir/icons/number_8_square.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #view_template
Instance Method Details
#regular ⇒ Object
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
32
|
# File 'lib/phlex/icons/iconoir/icons/number_8_square.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:
"M3 20.4V3.6C3 3.26863 3.26863 3 3.6 3H20.4C20.7314 3 21 3.26863 21 3.6V20.4C21 20.7314 20.7314 21 20.4 21H3.6C3.26863 21 3 20.7314 3 20.4Z",
stroke: "currentColor"
)
s.path(
d:
"M12 16C10.6193 16 9.5 15.5 9.5 14C9.5 12.5 10.6193 12 12 12C13.3807 12 14.5 12.5 14.5 14C14.5 15.5 13.3807 16 12 16Z",
stroke: "currentColor",
stroke_linecap: "round",
stroke_linejoin: "round"
)
s.path(
d:
"M12 8C10.6193 8 9.5 8.5 9.5 10C9.5 11.5 10.6193 12 12 12C13.3807 12 14.5 11.5 14.5 10C14.5 8.5 13.3807 8 12 8Z",
stroke: "currentColor",
stroke_linecap: "round",
stroke_linejoin: "round"
)
end
end
|
#solid ⇒ Object
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# File 'lib/phlex/icons/iconoir/icons/number_8_square.rb', line 34
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:
"M2.25 3.6C2.25 2.85441 2.85442 2.25 3.6 2.25H20.4C21.1456 2.25 21.75 2.85442 21.75 3.6V20.4C21.75 21.1456 21.1456 21.75 20.4 21.75H3.6C2.85441 21.75 2.25 21.1456 2.25 20.4V3.6ZM13.3415 13.0546C13.5668 13.2102 13.75 13.4651 13.75 14C13.75 14.5349 13.5668 14.7898 13.3415 14.9454C13.0688 15.1338 12.6213 15.25 12 15.25C11.3787 15.25 10.9312 15.1338 10.6585 14.9454C10.4332 14.7898 10.25 14.5349 10.25 14C10.25 13.4651 10.4332 13.2102 10.6585 13.0546C10.9312 12.8662 11.3787 12.75 12 12.75C12.6213 12.75 13.0688 12.8662 13.3415 13.0546ZM9.57592 12C9.042 12.4706 8.75 13.15 8.75 14C8.75 14.9651 9.12642 15.7102 9.80598 16.1796C10.4381 16.6162 11.2406 16.75 12 16.75C12.7594 16.75 13.5619 16.6162 14.194 16.1796C14.8736 15.7102 15.25 14.9651 15.25 14C15.25 13.15 14.958 12.4706 14.4241 12C14.958 11.5294 15.25 10.85 15.25 10C15.25 9.03486 14.8736 8.28981 14.194 7.8204C13.5619 7.38377 12.7594 7.25 12 7.25C11.2406 7.25 10.4381 7.38377 9.80598 7.8204C9.12642 8.28981 8.75 9.03486 8.75 10C8.75 10.85 9.042 11.5294 9.57592 12ZM12 11.25C12.6213 11.25 13.0688 11.1338 13.3415 10.9454C13.5668 10.7898 13.75 10.5349 13.75 10C13.75 9.46514 13.5668 9.21019 13.3415 9.0546C13.0688 8.86623 12.6213 8.75 12 8.75C11.3787 8.75 10.9312 8.86623 10.6585 9.0546C10.4332 9.21019 10.25 9.46514 10.25 10C10.25 10.5349 10.4332 10.7898 10.6585 10.9454C10.9312 11.1338 11.3787 11.25 12 11.25Z",
fill: "currentColor"
)
end
end
|