phlex-icons 2.45.0 → 2.46.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/ampersand.rb +2 -2
- data/lib/phlex-icons/lucide/anchor.rb +4 -3
- data/lib/phlex-icons/lucide/calendars.rb +27 -0
- data/lib/phlex-icons/lucide/{fingerprint.rb → fingerprint_pattern.rb} +1 -1
- data/lib/phlex-icons/lucide/folder_git_2.rb +1 -1
- data/lib/phlex-icons/lucide.rb +3 -2
- data/lib/phlex-icons/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19706b7cb9b192396451c03cd190293423d26e6096b31712f92303a66394aa53
|
|
4
|
+
data.tar.gz: 6fc098d5a6ce549a904c0fb5b4e5007cb826b67e23b355531697da0db7b0eed7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30453ac1a5ffe8b9e40f547377686e2c19151df443062151d2bd9a892f03313c210e2eaa6ea992a4b25ed37ff8401e61188d8da3ffbb1e1d74eed69948c48af2
|
|
7
|
+
data.tar.gz: 25d73825cc9ed03555a3cf12aea1dd8bfecceaa6835a9adbb0862899d903a386aeb47f2dafc375fff7c92f9fb00deab86ae557bb42a7a9d6d1ddebc21a07011a
|
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
+
s.path(d: 'M16 12h3')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
|
-
'M17.5
|
|
20
|
+
'M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13'
|
|
20
21
|
)
|
|
21
|
-
s.path(d: 'M16 12h3')
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -14,9 +14,10 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
-
s.path(d: 'M12
|
|
18
|
-
s.path(d: '
|
|
19
|
-
s.
|
|
17
|
+
s.path(d: 'M12 6v16')
|
|
18
|
+
s.path(d: 'm19 13 2-1a9 9 0 0 1-18 0l2 1')
|
|
19
|
+
s.path(d: 'M9 11h6')
|
|
20
|
+
s.circle(cx: '12', cy: '4', r: '2')
|
|
20
21
|
end
|
|
21
22
|
end
|
|
22
23
|
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Calendars < 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 2v2')
|
|
18
|
+
s.path(d: 'M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2')
|
|
19
|
+
s.path(d: 'M18 2v2')
|
|
20
|
+
s.path(d: 'M2 13h2')
|
|
21
|
+
s.path(d: 'M8 8h14')
|
|
22
|
+
s.rect(x: '8', y: '3', width: '14', height: '14', rx: '2')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -14,12 +14,12 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
+
s.path(d: 'M18 19a5 5 0 0 1-5-5v8')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
20
|
'M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5'
|
|
20
21
|
)
|
|
21
22
|
s.circle(cx: '13', cy: '12', r: '2')
|
|
22
|
-
s.path(d: 'M18 19c-2.8 0-5-2.2-5-5v8')
|
|
23
23
|
s.circle(cx: '20', cy: '19', r: '2')
|
|
24
24
|
end
|
|
25
25
|
end
|
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.554.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -279,6 +279,7 @@ module PhlexIcons
|
|
|
279
279
|
autoload :CalendarSync, 'phlex-icons/lucide/calendar_sync'
|
|
280
280
|
autoload :CalendarX, 'phlex-icons/lucide/calendar_x'
|
|
281
281
|
autoload :CalendarX2, 'phlex-icons/lucide/calendar_x_2'
|
|
282
|
+
autoload :Calendars, 'phlex-icons/lucide/calendars'
|
|
282
283
|
autoload :Camera, 'phlex-icons/lucide/camera'
|
|
283
284
|
autoload :CameraOff, 'phlex-icons/lucide/camera_off'
|
|
284
285
|
autoload :Candy, 'phlex-icons/lucide/candy'
|
|
@@ -643,7 +644,7 @@ module PhlexIcons
|
|
|
643
644
|
autoload :FileXCorner, 'phlex-icons/lucide/file_x_corner'
|
|
644
645
|
autoload :Files, 'phlex-icons/lucide/files'
|
|
645
646
|
autoload :Film, 'phlex-icons/lucide/film'
|
|
646
|
-
autoload :
|
|
647
|
+
autoload :FingerprintPattern, 'phlex-icons/lucide/fingerprint_pattern'
|
|
647
648
|
autoload :FireExtinguisher, 'phlex-icons/lucide/fire_extinguisher'
|
|
648
649
|
autoload :Fish, 'phlex-icons/lucide/fish'
|
|
649
650
|
autoload :FishOff, 'phlex-icons/lucide/fish_off'
|
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.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -13195,6 +13195,7 @@ files:
|
|
|
13195
13195
|
- lib/phlex-icons/lucide/calendar_sync.rb
|
|
13196
13196
|
- lib/phlex-icons/lucide/calendar_x.rb
|
|
13197
13197
|
- lib/phlex-icons/lucide/calendar_x_2.rb
|
|
13198
|
+
- lib/phlex-icons/lucide/calendars.rb
|
|
13198
13199
|
- lib/phlex-icons/lucide/camera.rb
|
|
13199
13200
|
- lib/phlex-icons/lucide/camera_off.rb
|
|
13200
13201
|
- lib/phlex-icons/lucide/candy.rb
|
|
@@ -13559,7 +13560,7 @@ files:
|
|
|
13559
13560
|
- lib/phlex-icons/lucide/file_x_corner.rb
|
|
13560
13561
|
- lib/phlex-icons/lucide/files.rb
|
|
13561
13562
|
- lib/phlex-icons/lucide/film.rb
|
|
13562
|
-
- lib/phlex-icons/lucide/
|
|
13563
|
+
- lib/phlex-icons/lucide/fingerprint_pattern.rb
|
|
13563
13564
|
- lib/phlex-icons/lucide/fire_extinguisher.rb
|
|
13564
13565
|
- lib/phlex-icons/lucide/fish.rb
|
|
13565
13566
|
- lib/phlex-icons/lucide/fish_off.rb
|