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,
|
|
@@ -6790,6 +6892,12 @@
|
|
|
6790
6892
|
exports.Currency = Currency;
|
|
6791
6893
|
exports.Database = Database;
|
|
6792
6894
|
exports.Delete = Delete;
|
|
6895
|
+
exports.Dice1 = Dice1;
|
|
6896
|
+
exports.Dice2 = Dice2;
|
|
6897
|
+
exports.Dice3 = Dice3;
|
|
6898
|
+
exports.Dice4 = Dice4;
|
|
6899
|
+
exports.Dice5 = Dice5;
|
|
6900
|
+
exports.Dice6 = Dice6;
|
|
6793
6901
|
exports.Disc = Disc;
|
|
6794
6902
|
exports.Divide = Divide;
|
|
6795
6903
|
exports.DivideCircle = DivideCircle;
|
|
@@ -6861,6 +6969,7 @@
|
|
|
6861
6969
|
exports.GitBranch = GitBranch;
|
|
6862
6970
|
exports.GitBranchPlus = GitBranchPlus;
|
|
6863
6971
|
exports.GitCommit = GitCommit;
|
|
6972
|
+
exports.GitFork = GitFork;
|
|
6864
6973
|
exports.GitMerge = GitMerge;
|
|
6865
6974
|
exports.GitPullRequest = GitPullRequest;
|
|
6866
6975
|
exports.Github = Github;
|
|
@@ -7031,6 +7140,7 @@
|
|
|
7031
7140
|
exports.Reply = Reply;
|
|
7032
7141
|
exports.ReplyAll = ReplyAll;
|
|
7033
7142
|
exports.Rewind = Rewind;
|
|
7143
|
+
exports.Rocket = Rocket;
|
|
7034
7144
|
exports.RockingChair = RockingChair;
|
|
7035
7145
|
exports.RotateCcw = RotateCcw;
|
|
7036
7146
|
exports.RotateCw = RotateCw;
|