phlex-icons-lucide 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/phlex-icons/lucide/house_wifi.rb +30 -0
- data/lib/phlex-icons/lucide/triangle_dashed.rb +32 -0
- data/lib/phlex-icons/lucide.rb +3 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6db70b61083eb8005ba7baaba2c82e961fee390cf2adbc1d9ff6205a1bc4f486
|
4
|
+
data.tar.gz: c1e3608f9342c36f59b694669ae7998ec316ede63aec07e94e6198ca87156914
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1d804463080330e45ebcf10163d68e9d434857820eee8ca05ee44b30e37acf4bed98bafad79dfd4a3b7163c7ab8933e7b2f12328cf6dd95a69d5410a0e56aee
|
7
|
+
data.tar.gz: ef307941e4bf758da8c5e197d93f3371084c964f4ce924c07570791fdb03499bcaaa5e129d3312962d81b3a1c44c0f400333558cade102135712c801be22ec8a
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class HouseWifi < Base
|
7
|
+
def view_template
|
8
|
+
svg(
|
9
|
+
**attrs,
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
11
|
+
viewbox: '0 0 24 24',
|
12
|
+
fill: 'none',
|
13
|
+
stroke: 'currentColor',
|
14
|
+
stroke_width: '2',
|
15
|
+
stroke_linecap: 'round',
|
16
|
+
stroke_linejoin: 'round'
|
17
|
+
) do |s|
|
18
|
+
s.path(d: 'M9.5 13.866a4 4 0 0 1 5 .01')
|
19
|
+
s.path(d: 'M12 17h.01')
|
20
|
+
s.path(
|
21
|
+
d:
|
22
|
+
'M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'
|
23
|
+
)
|
24
|
+
s.path(d: 'M7 10.754a8 8 0 0 1 10 0')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class TriangleDashed < Base
|
7
|
+
def view_template
|
8
|
+
svg(
|
9
|
+
**attrs,
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
11
|
+
viewbox: '0 0 24 24',
|
12
|
+
fill: 'none',
|
13
|
+
stroke: 'currentColor',
|
14
|
+
stroke_width: '2',
|
15
|
+
stroke_linecap: 'round',
|
16
|
+
stroke_linejoin: 'round'
|
17
|
+
) do |s|
|
18
|
+
s.path(d: 'M10.17 4.193a2 2 0 0 1 3.666.013')
|
19
|
+
s.path(d: 'M14 21h2')
|
20
|
+
s.path(d: 'm15.874 7.743 1 1.732')
|
21
|
+
s.path(d: 'm18.849 12.952 1 1.732')
|
22
|
+
s.path(d: 'M21.824 18.18a2 2 0 0 1-1.835 2.824')
|
23
|
+
s.path(d: 'M4.024 21a2 2 0 0 1-1.839-2.839')
|
24
|
+
s.path(d: 'm5.136 12.952-1 1.732')
|
25
|
+
s.path(d: 'M8 21h2')
|
26
|
+
s.path(d: 'm8.102 7.743-1 1.732')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# rubocop:enable Metrics/MethodLength
|
data/lib/phlex-icons/lucide.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
5
|
-
VERSION = '0.
|
5
|
+
VERSION = '0.471.1'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -770,6 +770,7 @@ module PhlexIcons
|
|
770
770
|
autoload :House, 'phlex-icons/lucide/house'
|
771
771
|
autoload :HousePlug, 'phlex-icons/lucide/house_plug'
|
772
772
|
autoload :HousePlus, 'phlex-icons/lucide/house_plus'
|
773
|
+
autoload :HouseWifi, 'phlex-icons/lucide/house_wifi'
|
773
774
|
autoload :IceCreamBowl, 'phlex-icons/lucide/ice_cream_bowl'
|
774
775
|
autoload :IceCreamCone, 'phlex-icons/lucide/ice_cream_cone'
|
775
776
|
autoload :IdCard, 'phlex-icons/lucide/id_card'
|
@@ -1451,6 +1452,7 @@ module PhlexIcons
|
|
1451
1452
|
autoload :TrendingUpDown, 'phlex-icons/lucide/trending_up_down'
|
1452
1453
|
autoload :Triangle, 'phlex-icons/lucide/triangle'
|
1453
1454
|
autoload :TriangleAlert, 'phlex-icons/lucide/triangle_alert'
|
1455
|
+
autoload :TriangleDashed, 'phlex-icons/lucide/triangle_dashed'
|
1454
1456
|
autoload :TriangleRight, 'phlex-icons/lucide/triangle_right'
|
1455
1457
|
autoload :Trophy, 'phlex-icons/lucide/trophy'
|
1456
1458
|
autoload :Truck, 'phlex-icons/lucide/truck'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phlex-icons-lucide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ali Hamdi Ali Fadel
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -814,6 +814,7 @@ files:
|
|
814
814
|
- lib/phlex-icons/lucide/house.rb
|
815
815
|
- lib/phlex-icons/lucide/house_plug.rb
|
816
816
|
- lib/phlex-icons/lucide/house_plus.rb
|
817
|
+
- lib/phlex-icons/lucide/house_wifi.rb
|
817
818
|
- lib/phlex-icons/lucide/ice_cream_bowl.rb
|
818
819
|
- lib/phlex-icons/lucide/ice_cream_cone.rb
|
819
820
|
- lib/phlex-icons/lucide/id_card.rb
|
@@ -1495,6 +1496,7 @@ files:
|
|
1495
1496
|
- lib/phlex-icons/lucide/trending_up_down.rb
|
1496
1497
|
- lib/phlex-icons/lucide/triangle.rb
|
1497
1498
|
- lib/phlex-icons/lucide/triangle_alert.rb
|
1499
|
+
- lib/phlex-icons/lucide/triangle_dashed.rb
|
1498
1500
|
- lib/phlex-icons/lucide/triangle_right.rb
|
1499
1501
|
- lib/phlex-icons/lucide/trophy.rb
|
1500
1502
|
- lib/phlex-icons/lucide/truck.rb
|