phlex-icons-lucide 2.11.0 → 2.12.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/square_round_corner.rb +23 -0
- data/lib/phlex-icons/lucide.rb +2 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05a10c0cff1a0fdcd3a4746d5e3a6256a9761f322b3305cc3b8355bde0e54c8d
|
4
|
+
data.tar.gz: 904466e9105ad831310f60e81b26e2ade4ff0574aabb422d5781e584eff78c45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3812b7d52a17b8520a3a0f32aac08cdb90338d9c5013b49f3f272f4dba5b8c2554aa3ba346fbba31f41c370f16ba5570c4149d8c2b3a467dcae9a141c08ed945
|
7
|
+
data.tar.gz: '08acd79fbbea1e748835e1bfca75a4416b0346a244bb3fab88db014f9a4d40927d78efcc1d383887e8f29434f87b8569387c71729cae01af148558db3088d0a9'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class SquareRoundCorner < 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: 'M21 11a8 8 0 0 0-8-8')
|
18
|
+
s.path(d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4')
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
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.477.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -1340,6 +1340,7 @@ module PhlexIcons
|
|
1340
1340
|
autoload :SquarePlus, 'phlex-icons/lucide/square_plus'
|
1341
1341
|
autoload :SquarePower, 'phlex-icons/lucide/square_power'
|
1342
1342
|
autoload :SquareRadical, 'phlex-icons/lucide/square_radical'
|
1343
|
+
autoload :SquareRoundCorner, 'phlex-icons/lucide/square_round_corner'
|
1343
1344
|
autoload :SquareScissors, 'phlex-icons/lucide/square_scissors'
|
1344
1345
|
autoload :SquareSigma, 'phlex-icons/lucide/square_sigma'
|
1345
1346
|
autoload :SquareSlash, 'phlex-icons/lucide/square_slash'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ali Hamdi Ali Fadel
|
@@ -1384,6 +1384,7 @@ files:
|
|
1384
1384
|
- lib/phlex-icons/lucide/square_plus.rb
|
1385
1385
|
- lib/phlex-icons/lucide/square_power.rb
|
1386
1386
|
- lib/phlex-icons/lucide/square_radical.rb
|
1387
|
+
- lib/phlex-icons/lucide/square_round_corner.rb
|
1387
1388
|
- lib/phlex-icons/lucide/square_scissors.rb
|
1388
1389
|
- lib/phlex-icons/lucide/square_sigma.rb
|
1389
1390
|
- lib/phlex-icons/lucide/square_slash.rb
|