phlex-icons-lucide 2.5.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c05e3039aec2b805c07ce9a9c1e51a3a07e70022a6f21dc34e101b137a1d06ac
4
- data.tar.gz: 35f7f790763eb3160839f2eba3e197672cb1dbd08183017eb20e162f612f3503
3
+ metadata.gz: 6db70b61083eb8005ba7baaba2c82e961fee390cf2adbc1d9ff6205a1bc4f486
4
+ data.tar.gz: c1e3608f9342c36f59b694669ae7998ec316ede63aec07e94e6198ca87156914
5
5
  SHA512:
6
- metadata.gz: d35b7acdb0b6c37822914f902e22297be41528f9e6a13d868106db5d776b5fc29ff56eb4a3e2e48d4e4ed6f98a6c1de0943fb9f0d4b592e2fdef102601acc0b8
7
- data.tar.gz: 556a02017eb65b9666b797eb9464e84246807557930822ef6a51cce09f04ba2b02d42fe74b9fe8630e84ebb41dfe87785cfa8f3ee51540e04c0080ae5930d6b7
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.469.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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.5.0'
4
+ VERSION = '2.7.0'
5
5
  end
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.5.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ali Hamdi Ali Fadel
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-04 00:00:00.000000000 Z
11
+ date: 2025-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -24,7 +24,7 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.11'
27
- description:
27
+ description:
28
28
  email:
29
29
  - aliosm1997@gmail.com
30
30
  executables: []
@@ -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
@@ -1610,7 +1612,7 @@ metadata:
1610
1612
  source_code_uri: https://github.com/AliOsm/phlex-icons
1611
1613
  changelog_uri: https://github.com/AliOsm/phlex-icons/blob/main/CHANGELOG.md
1612
1614
  rubygems_mfa_required: 'true'
1613
- post_install_message:
1615
+ post_install_message:
1614
1616
  rdoc_options: []
1615
1617
  require_paths:
1616
1618
  - lib
@@ -1626,7 +1628,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1626
1628
  version: '0'
1627
1629
  requirements: []
1628
1630
  rubygems_version: 3.5.11
1629
- signing_key:
1631
+ signing_key:
1630
1632
  specification_version: 4
1631
1633
  summary: Lucide icons library for Phlex
1632
1634
  test_files: []