Class: Phlex::Icons::Iconoir::BubbleXmark
- Inherits:
-
Base
- Object
- SVG
- Base
- Phlex::Icons::Iconoir::BubbleXmark
show all
- Defined in:
- lib/phlex/icons/iconoir/icons/bubble_xmark.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
|
# File 'lib/phlex/icons/iconoir/icons/bubble_xmark.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:
"M13 2.04938C12.6711 2.01672 12.3375 2 12 2C6.47715 2 2 6.47715 2 12C2 13.8214 2.48697 15.5291 3.33782 17L2.5 21.5L7 20.6622C8.47087 21.513 10.1786 22 12 22C17.5228 22 22 17.5228 22 12C22 11.6625 21.9833 11.3289 21.9506 11",
stroke: "currentColor",
stroke_linecap: "round",
stroke_linejoin: "round"
)
s.path(
d:
"M17.1211 7.36398L19.2424 5.24266M19.2424 5.24266L21.3637 3.12134M19.2424 5.24266L17.1211 3.12134M19.2424 5.24266L21.3637 7.36398",
stroke: "currentColor",
stroke_linecap: "round",
stroke_linejoin: "round"
)
end
end
|
#solid ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# File 'lib/phlex/icons/iconoir/icons/bubble_xmark.rb', line 29
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:
"M19.7727 8.95472L19.2424 8.42441L18.7121 8.95472C17.8334 9.8334 16.4088 9.83341 15.5301 8.95473C14.6514 8.07606 14.6514 6.65143 15.5301 5.77275L16.0604 5.24241L15.5301 4.71208C14.7283 3.91023 14.6581 2.65374 15.3198 1.77239C14.2742 1.43327 13.1585 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 13.8563 1.72113 15.6046 2.55076 17.1298L1.76267 21.3627C1.71742 21.6058 1.79485 21.8555 1.96967 22.0303C2.14448 22.2051 2.39422 22.2826 2.63727 22.2373L6.87016 21.4493C8.39536 22.2788 10.1437 22.75 12 22.75C17.937 22.75 22.75 17.937 22.75 12C22.75 11.0857 22.6359 10.198 22.421 9.3505C21.5702 9.80366 20.4897 9.67173 19.7727 8.95472Z",
fill: "currentColor"
)
s.path(
fill_rule: "evenodd",
clip_rule: "evenodd",
d:
"M16.5908 2.59076C16.8837 2.29787 17.3585 2.29787 17.6514 2.59077L19.2424 4.18175L20.8334 2.59077C21.1263 2.29787 21.6011 2.29787 21.894 2.59076C22.1869 2.88365 22.1869 3.35853 21.894 3.65142L20.303 5.24241L21.894 6.83341C22.1869 7.1263 22.1869 7.60117 21.894 7.89407C21.6011 8.18696 21.1263 8.18696 20.8334 7.89406L19.2424 6.30308L17.6514 7.89406C17.3585 8.18696 16.8837 8.18696 16.5908 7.89407C16.2979 7.60117 16.2979 7.1263 16.5908 6.83341L18.1817 5.24241L16.5908 3.65142C16.2979 3.35853 16.2979 2.88365 16.5908 2.59076Z",
fill: "currentColor"
)
end
end
|