phlex-icons 2.42.0 → 2.43.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c60fcf0b99c54fa6121ad81920e419308a58d17759f6e4fcdc218872638266a8
|
|
4
|
+
data.tar.gz: 6d4d71ae04f7678087c96870c7466f947d0e5ecc4fddc3b22d256f6dcfecb91c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1aa07969928c0dbf56cf1e7f164880017d3b5ae4058ba2c94e52b53f0ae96753efb78331ff6e1f2df4a9c454137169d74d6363197f8f20541d118cc0f627b379
|
|
7
|
+
data.tar.gz: ebcaabc68f656531290fa891fad83480f9c89741f65b387d2a152ba6b7f87def78f360ba177e1ca83761cf69ba26e57a677fa9a6cf927374789cfaddabc070ea
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Birdhouse < Base
|
|
6
|
+
def view_template
|
|
7
|
+
svg(
|
|
8
|
+
**attrs,
|
|
9
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
10
|
+
viewbox: '0 0 24 24',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
stroke: 'currentColor',
|
|
13
|
+
stroke_width: '2',
|
|
14
|
+
stroke_linecap: 'round',
|
|
15
|
+
stroke_linejoin: 'round'
|
|
16
|
+
) do |s|
|
|
17
|
+
s.path(d: 'M12 18v4')
|
|
18
|
+
s.path(d: 'm17 18 1.956-11.468')
|
|
19
|
+
s.path(d: 'm3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8')
|
|
20
|
+
s.path(d: 'M4 18h16')
|
|
21
|
+
s.path(d: 'M7 18 5.044 6.532')
|
|
22
|
+
s.circle(cx: '12', cy: '10', r: '2')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class GamepadDirectional < 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(
|
|
19
|
+
d:
|
|
20
|
+
'M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z'
|
|
21
|
+
)
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z'
|
|
25
|
+
)
|
|
26
|
+
s.path(
|
|
27
|
+
d:
|
|
28
|
+
'M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z'
|
|
29
|
+
)
|
|
30
|
+
s.path(
|
|
31
|
+
d:
|
|
32
|
+
'M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z'
|
|
33
|
+
)
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
# rubocop:enable Layout/LineLength
|
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.548.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -179,6 +179,7 @@ module PhlexIcons
|
|
|
179
179
|
autoload :Binoculars, 'phlex-icons/lucide/binoculars'
|
|
180
180
|
autoload :Biohazard, 'phlex-icons/lucide/biohazard'
|
|
181
181
|
autoload :Bird, 'phlex-icons/lucide/bird'
|
|
182
|
+
autoload :Birdhouse, 'phlex-icons/lucide/birdhouse'
|
|
182
183
|
autoload :Bitcoin, 'phlex-icons/lucide/bitcoin'
|
|
183
184
|
autoload :Blend, 'phlex-icons/lucide/blend'
|
|
184
185
|
autoload :Blinds, 'phlex-icons/lucide/blinds'
|
|
@@ -713,6 +714,7 @@ module PhlexIcons
|
|
|
713
714
|
autoload :GalleryVerticalEnd, 'phlex-icons/lucide/gallery_vertical_end'
|
|
714
715
|
autoload :Gamepad, 'phlex-icons/lucide/gamepad'
|
|
715
716
|
autoload :Gamepad2, 'phlex-icons/lucide/gamepad_2'
|
|
717
|
+
autoload :GamepadDirectional, 'phlex-icons/lucide/gamepad_directional'
|
|
716
718
|
autoload :Gauge, 'phlex-icons/lucide/gauge'
|
|
717
719
|
autoload :Gavel, 'phlex-icons/lucide/gavel'
|
|
718
720
|
autoload :Gem, 'phlex-icons/lucide/gem'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phlex-icons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -13095,6 +13095,7 @@ files:
|
|
|
13095
13095
|
- lib/phlex-icons/lucide/binoculars.rb
|
|
13096
13096
|
- lib/phlex-icons/lucide/biohazard.rb
|
|
13097
13097
|
- lib/phlex-icons/lucide/bird.rb
|
|
13098
|
+
- lib/phlex-icons/lucide/birdhouse.rb
|
|
13098
13099
|
- lib/phlex-icons/lucide/bitcoin.rb
|
|
13099
13100
|
- lib/phlex-icons/lucide/blend.rb
|
|
13100
13101
|
- lib/phlex-icons/lucide/blinds.rb
|
|
@@ -13629,6 +13630,7 @@ files:
|
|
|
13629
13630
|
- lib/phlex-icons/lucide/gallery_vertical_end.rb
|
|
13630
13631
|
- lib/phlex-icons/lucide/gamepad.rb
|
|
13631
13632
|
- lib/phlex-icons/lucide/gamepad_2.rb
|
|
13633
|
+
- lib/phlex-icons/lucide/gamepad_directional.rb
|
|
13632
13634
|
- lib/phlex-icons/lucide/gauge.rb
|
|
13633
13635
|
- lib/phlex-icons/lucide/gavel.rb
|
|
13634
13636
|
- lib/phlex-icons/lucide/gem.rb
|