Class: Phlex::Icons::Iconoir::Number3Square
- Inherits:
-
Base
- Object
- SVG
- Base
- Phlex::Icons::Iconoir::Number3Square
show all
- Defined in:
- lib/phlex/icons/iconoir/icons/number_3_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_3_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:
"M9.5 10C9.5 8.89543 10.6193 8 12 8C13.3807 8 14.5 8.89543 14.5 10C14.5 11.1046 13.8807 12 12.5 12",
stroke: "currentColor",
stroke_linecap: "round",
stroke_linejoin: "round"
)
s.path(
d:
"M9.5 14C9.5 15.1046 10.6193 16 12 16C13.3807 16 14.5 15.1046 14.5 14C14.5 12.8954 13.8807 12 12.5 12",
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_3_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.6ZM12 8.75C13.1313 8.75 13.75 9.45717 13.75 10C13.75 10.4191 13.6329 10.7217 13.4616 10.9111C13.3018 11.0877 13.0195 11.25 12.5 11.25C12.0858 11.25 11.75 11.5858 11.75 12C11.75 12.4142 12.0858 12.75 12.5 12.75C13.0195 12.75 13.3018 12.9123 13.4616 13.0889C13.6329 13.2783 13.75 13.5809 13.75 14C13.75 14.5428 13.1313 15.25 12 15.25C10.8687 15.25 10.25 14.5428 10.25 14C10.25 13.5858 9.91421 13.25 9.5 13.25C9.08579 13.25 8.75 13.5858 8.75 14C8.75 15.6663 10.3699 16.75 12 16.75C13.6301 16.75 15.25 15.6663 15.25 14C15.25 13.3145 15.0575 12.6171 14.574 12.0826C14.5484 12.0544 14.5223 12.0269 14.4955 12C14.5223 11.9732 14.5484 11.9456 14.574 11.9174C15.0575 11.3829 15.25 10.6855 15.25 10C15.25 8.33369 13.6301 7.25 12 7.25C10.3699 7.25 8.75 8.33369 8.75 10C8.75 10.4142 9.08579 10.75 9.5 10.75C9.91421 10.75 10.25 10.4142 10.25 10C10.25 9.45717 10.8687 8.75 12 8.75Z",
fill: "currentColor"
)
end
end
|