lucide-angular 0.17.13 → 0.17.16
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.
- package/bundles/lucide-angular-src-icons.umd.js +110 -0
- package/bundles/lucide-angular-src-icons.umd.js.map +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js.map +1 -1
- package/bundles/lucide-angular.umd.js +118 -0
- package/bundles/lucide-angular.umd.js.map +1 -1
- package/bundles/lucide-angular.umd.min.js +1 -1
- package/bundles/lucide-angular.umd.min.js.map +1 -1
- package/esm2015/icons/dice-1.js +11 -0
- package/esm2015/icons/dice-2.js +12 -0
- package/esm2015/icons/dice-3.js +13 -0
- package/esm2015/icons/dice-4.js +14 -0
- package/esm2015/icons/dice-5.js +15 -0
- package/esm2015/icons/dice-6.js +16 -0
- package/esm2015/icons/git-fork.js +14 -0
- package/esm2015/icons/index.js +9 -1
- package/esm2015/icons/rocket.js +23 -0
- package/esm2015/src/icons/dice-1.js +11 -0
- package/esm2015/src/icons/dice-2.js +12 -0
- package/esm2015/src/icons/dice-3.js +13 -0
- package/esm2015/src/icons/dice-4.js +14 -0
- package/esm2015/src/icons/dice-5.js +15 -0
- package/esm2015/src/icons/dice-6.js +16 -0
- package/esm2015/src/icons/git-fork.js +14 -0
- package/esm2015/src/icons/index.js +9 -1
- package/esm2015/src/icons/rocket.js +23 -0
- package/fesm2015/lucide-angular-src-icons.js +103 -1
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +111 -1
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/dice-1.d.ts +3 -0
- package/icons/dice-2.d.ts +3 -0
- package/icons/dice-3.d.ts +3 -0
- package/icons/dice-4.d.ts +3 -0
- package/icons/dice-5.d.ts +3 -0
- package/icons/dice-6.d.ts +3 -0
- package/icons/git-fork.d.ts +3 -0
- package/icons/index.d.ts +8 -0
- package/icons/rocket.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/dice-1.d.ts +3 -0
- package/src/icons/dice-2.d.ts +3 -0
- package/src/icons/dice-3.d.ts +3 -0
- package/src/icons/dice-4.d.ts +3 -0
- package/src/icons/dice-5.d.ts +3 -0
- package/src/icons/dice-6.d.ts +3 -0
- package/src/icons/git-fork.d.ts +3 -0
- package/src/icons/index.d.ts +8 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/rocket.d.ts +3 -0
|
@@ -2042,6 +2042,75 @@
|
|
|
2042
2042
|
],
|
|
2043
2043
|
];
|
|
2044
2044
|
|
|
2045
|
+
var Dice1 = [
|
|
2046
|
+
'svg',
|
|
2047
|
+
defaultAttributes,
|
|
2048
|
+
[
|
|
2049
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2050
|
+
['path', { d: 'M12 12h.01' }],
|
|
2051
|
+
],
|
|
2052
|
+
];
|
|
2053
|
+
|
|
2054
|
+
var Dice2 = [
|
|
2055
|
+
'svg',
|
|
2056
|
+
defaultAttributes,
|
|
2057
|
+
[
|
|
2058
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2059
|
+
['path', { d: 'M15 9h.01' }],
|
|
2060
|
+
['path', { d: 'M9 15h.01' }],
|
|
2061
|
+
],
|
|
2062
|
+
];
|
|
2063
|
+
|
|
2064
|
+
var Dice3 = [
|
|
2065
|
+
'svg',
|
|
2066
|
+
defaultAttributes,
|
|
2067
|
+
[
|
|
2068
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2069
|
+
['path', { d: 'M16 8h.01' }],
|
|
2070
|
+
['path', { d: 'M12 12h.01' }],
|
|
2071
|
+
['path', { d: 'M8 16h.01' }],
|
|
2072
|
+
],
|
|
2073
|
+
];
|
|
2074
|
+
|
|
2075
|
+
var Dice4 = [
|
|
2076
|
+
'svg',
|
|
2077
|
+
defaultAttributes,
|
|
2078
|
+
[
|
|
2079
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2080
|
+
['path', { d: 'M16 8h.01' }],
|
|
2081
|
+
['path', { d: 'M8 8h.01' }],
|
|
2082
|
+
['path', { d: 'M8 16h.01' }],
|
|
2083
|
+
['path', { d: 'M16 16h.01' }],
|
|
2084
|
+
],
|
|
2085
|
+
];
|
|
2086
|
+
|
|
2087
|
+
var Dice5 = [
|
|
2088
|
+
'svg',
|
|
2089
|
+
defaultAttributes,
|
|
2090
|
+
[
|
|
2091
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2092
|
+
['path', { d: 'M16 8h.01' }],
|
|
2093
|
+
['path', { d: 'M8 8h.01' }],
|
|
2094
|
+
['path', { d: 'M8 16h.01' }],
|
|
2095
|
+
['path', { d: 'M16 16h.01' }],
|
|
2096
|
+
['path', { d: 'M12 12h.01' }],
|
|
2097
|
+
],
|
|
2098
|
+
];
|
|
2099
|
+
|
|
2100
|
+
var Dice6 = [
|
|
2101
|
+
'svg',
|
|
2102
|
+
defaultAttributes,
|
|
2103
|
+
[
|
|
2104
|
+
['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
|
|
2105
|
+
['path', { d: 'M16 8h.01' }],
|
|
2106
|
+
['path', { d: 'M16 12h.01' }],
|
|
2107
|
+
['path', { d: 'M16 16h.01' }],
|
|
2108
|
+
['path', { d: 'M8 8h.01' }],
|
|
2109
|
+
['path', { d: 'M8 12h.01' }],
|
|
2110
|
+
['path', { d: 'M8 16h.01' }],
|
|
2111
|
+
],
|
|
2112
|
+
];
|
|
2113
|
+
|
|
2045
2114
|
var Disc = [
|
|
2046
2115
|
'svg',
|
|
2047
2116
|
defaultAttributes,
|
|
@@ -2874,6 +2943,18 @@
|
|
|
2874
2943
|
],
|
|
2875
2944
|
];
|
|
2876
2945
|
|
|
2946
|
+
var GitFork = [
|
|
2947
|
+
'svg',
|
|
2948
|
+
defaultAttributes,
|
|
2949
|
+
[
|
|
2950
|
+
['circle', { cx: '12', cy: '18', r: '3' }],
|
|
2951
|
+
['circle', { cx: '6', cy: '6', r: '3' }],
|
|
2952
|
+
['circle', { cx: '18', cy: '6', r: '3' }],
|
|
2953
|
+
['path', { d: 'M18 9v1a2 2 0 01-2 2H8a2 2 0 01-2-2V9' }],
|
|
2954
|
+
['path', { d: 'M12 12v3' }],
|
|
2955
|
+
],
|
|
2956
|
+
];
|
|
2957
|
+
|
|
2877
2958
|
var GitMerge = [
|
|
2878
2959
|
'svg',
|
|
2879
2960
|
defaultAttributes,
|
|
@@ -4932,6 +5013,27 @@
|
|
|
4932
5013
|
],
|
|
4933
5014
|
];
|
|
4934
5015
|
|
|
5016
|
+
var Rocket = [
|
|
5017
|
+
'svg',
|
|
5018
|
+
defaultAttributes,
|
|
5019
|
+
[
|
|
5020
|
+
[
|
|
5021
|
+
'path',
|
|
5022
|
+
{
|
|
5023
|
+
d: 'M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z',
|
|
5024
|
+
},
|
|
5025
|
+
],
|
|
5026
|
+
[
|
|
5027
|
+
'path',
|
|
5028
|
+
{
|
|
5029
|
+
d: 'M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z',
|
|
5030
|
+
},
|
|
5031
|
+
],
|
|
5032
|
+
['path', { d: 'M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0' }],
|
|
5033
|
+
['path', { d: 'M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5' }],
|
|
5034
|
+
],
|
|
5035
|
+
];
|
|
5036
|
+
|
|
4935
5037
|
var RockingChair = [
|
|
4936
5038
|
'svg',
|
|
4937
5039
|
defaultAttributes,
|
|
@@ -6788,6 +6890,12 @@
|
|
|
6788
6890
|
Currency: Currency,
|
|
6789
6891
|
Database: Database,
|
|
6790
6892
|
Delete: Delete,
|
|
6893
|
+
Dice1: Dice1,
|
|
6894
|
+
Dice2: Dice2,
|
|
6895
|
+
Dice3: Dice3,
|
|
6896
|
+
Dice4: Dice4,
|
|
6897
|
+
Dice5: Dice5,
|
|
6898
|
+
Dice6: Dice6,
|
|
6791
6899
|
Disc: Disc,
|
|
6792
6900
|
DivideCircle: DivideCircle,
|
|
6793
6901
|
DivideSquare: DivideSquare,
|
|
@@ -6859,6 +6967,7 @@
|
|
|
6859
6967
|
GitBranchPlus: GitBranchPlus,
|
|
6860
6968
|
GitBranch: GitBranch,
|
|
6861
6969
|
GitCommit: GitCommit,
|
|
6970
|
+
GitFork: GitFork,
|
|
6862
6971
|
GitMerge: GitMerge,
|
|
6863
6972
|
GitPullRequest: GitPullRequest,
|
|
6864
6973
|
Github: Github,
|
|
@@ -7029,6 +7138,7 @@
|
|
|
7029
7138
|
ReplyAll: ReplyAll,
|
|
7030
7139
|
Reply: Reply,
|
|
7031
7140
|
Rewind: Rewind,
|
|
7141
|
+
Rocket: Rocket,
|
|
7032
7142
|
RockingChair: RockingChair,
|
|
7033
7143
|
RotateCcw: RotateCcw,
|
|
7034
7144
|
RotateCw: RotateCw,
|
|
@@ -7803,6 +7913,12 @@
|
|
|
7803
7913
|
exports.Currency = Currency;
|
|
7804
7914
|
exports.Database = Database;
|
|
7805
7915
|
exports.Delete = Delete;
|
|
7916
|
+
exports.Dice1 = Dice1;
|
|
7917
|
+
exports.Dice2 = Dice2;
|
|
7918
|
+
exports.Dice3 = Dice3;
|
|
7919
|
+
exports.Dice4 = Dice4;
|
|
7920
|
+
exports.Dice5 = Dice5;
|
|
7921
|
+
exports.Dice6 = Dice6;
|
|
7806
7922
|
exports.Disc = Disc;
|
|
7807
7923
|
exports.Divide = Divide;
|
|
7808
7924
|
exports.DivideCircle = DivideCircle;
|
|
@@ -7874,6 +7990,7 @@
|
|
|
7874
7990
|
exports.GitBranch = GitBranch;
|
|
7875
7991
|
exports.GitBranchPlus = GitBranchPlus;
|
|
7876
7992
|
exports.GitCommit = GitCommit;
|
|
7993
|
+
exports.GitFork = GitFork;
|
|
7877
7994
|
exports.GitMerge = GitMerge;
|
|
7878
7995
|
exports.GitPullRequest = GitPullRequest;
|
|
7879
7996
|
exports.Github = Github;
|
|
@@ -8046,6 +8163,7 @@
|
|
|
8046
8163
|
exports.Reply = Reply;
|
|
8047
8164
|
exports.ReplyAll = ReplyAll;
|
|
8048
8165
|
exports.Rewind = Rewind;
|
|
8166
|
+
exports.Rocket = Rocket;
|
|
8049
8167
|
exports.RockingChair = RockingChair;
|
|
8050
8168
|
exports.RotateCcw = RotateCcw;
|
|
8051
8169
|
exports.RotateCw = RotateCw;
|