@central-icons-react-native/round-filled-radius-0-stroke-1 1.1.301 → 1.1.303
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/IconChart8/index.d.ts +4 -0
- package/IconChart8/index.js +3 -0
- package/IconChart8/index.js.map +11 -0
- package/IconChart8/index.mjs +3 -0
- package/IconChart8/index.mjs.map +11 -0
- package/IconShieldSafeSearch/index.d.ts +4 -0
- package/IconShieldSafeSearch/index.js +3 -0
- package/IconShieldSafeSearch/index.js.map +11 -0
- package/IconShieldSafeSearch/index.mjs +3 -0
- package/IconShieldSafeSearch/index.mjs.map +11 -0
- package/IconWave/index.d.ts +4 -0
- package/IconWave/index.js +3 -0
- package/IconWave/index.js.map +11 -0
- package/IconWave/index.mjs +3 -0
- package/IconWave/index.mjs.map +11 -0
- package/IconWaveRound2/index.d.ts +4 -0
- package/IconWaveRound2/index.js +3 -0
- package/IconWaveRound2/index.js.map +11 -0
- package/IconWaveRound2/index.mjs +3 -0
- package/IconWaveRound2/index.mjs.map +11 -0
- package/README.md +4 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +5 -1
package/index.d.ts
CHANGED
|
@@ -445,6 +445,7 @@ export { IconChart4, default as IconChart4Default } from "./IconChart4";
|
|
|
445
445
|
export { IconChart5, default as IconChart5Default } from "./IconChart5";
|
|
446
446
|
export { IconChart6, default as IconChart6Default } from "./IconChart6";
|
|
447
447
|
export { IconChart7, default as IconChart7Default } from "./IconChart7";
|
|
448
|
+
export { IconChart8, default as IconChart8Default } from "./IconChart8";
|
|
448
449
|
export { IconChartCompare, default as IconChartCompareDefault } from "./IconChartCompare";
|
|
449
450
|
export { IconChartCompareHorizontal, default as IconChartCompareHorizontalDefault } from "./IconChartCompareHorizontal";
|
|
450
451
|
export { IconChartWaterfall, default as IconChartWaterfallDefault } from "./IconChartWaterfall";
|
|
@@ -1654,6 +1655,7 @@ export { IconShieldCheck3, default as IconShieldCheck3Default } from "./IconShie
|
|
|
1654
1655
|
export { IconShieldCode, default as IconShieldCodeDefault } from "./IconShieldCode";
|
|
1655
1656
|
export { IconShieldCrossed, default as IconShieldCrossedDefault } from "./IconShieldCrossed";
|
|
1656
1657
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault } from "./IconShieldKeyhole";
|
|
1658
|
+
export { IconShieldSafeSearch, default as IconShieldSafeSearchDefault } from "./IconShieldSafeSearch";
|
|
1657
1659
|
export { IconShieldSearch, default as IconShieldSearchDefault } from "./IconShieldSearch";
|
|
1658
1660
|
export { IconShift, default as IconShiftDefault } from "./IconShift";
|
|
1659
1661
|
export { IconShimmer, default as IconShimmerDefault } from "./IconShimmer";
|
|
@@ -2035,6 +2037,8 @@ export { IconWarningSign, default as IconWarningSignDefault } from "./IconWarnin
|
|
|
2035
2037
|
export { IconWarp, default as IconWarpDefault } from "./IconWarp";
|
|
2036
2038
|
export { IconWashingMachine, default as IconWashingMachineDefault } from "./IconWashingMachine";
|
|
2037
2039
|
export { IconWaste, default as IconWasteDefault } from "./IconWaste";
|
|
2040
|
+
export { IconWave, default as IconWaveDefault } from "./IconWave";
|
|
2041
|
+
export { IconWaveRound2, default as IconWaveRound2Default } from "./IconWaveRound2";
|
|
2038
2042
|
export { IconWeb3, default as IconWeb3Default } from "./IconWeb3";
|
|
2039
2043
|
export { IconWebcam, default as IconWebcamDefault } from "./IconWebcam";
|
|
2040
2044
|
export { IconWebflow, default as IconWebflowDefault } from "./IconWebflow";
|
package/index.js
CHANGED
|
@@ -1341,6 +1341,9 @@ exports.IconChart6Default = _IconChart6.default;
|
|
|
1341
1341
|
var _IconChart7 = require("./IconChart7/index.js");
|
|
1342
1342
|
exports.IconChart7 = _IconChart7.IconChart7;
|
|
1343
1343
|
exports.IconChart7Default = _IconChart7.default;
|
|
1344
|
+
var _IconChart8 = require("./IconChart8/index.js");
|
|
1345
|
+
exports.IconChart8 = _IconChart8.IconChart8;
|
|
1346
|
+
exports.IconChart8Default = _IconChart8.default;
|
|
1344
1347
|
var _IconChartCompare = require("./IconChartCompare/index.js");
|
|
1345
1348
|
exports.IconChartCompare = _IconChartCompare.IconChartCompare;
|
|
1346
1349
|
exports.IconChartCompareDefault = _IconChartCompare.default;
|
|
@@ -4968,6 +4971,9 @@ exports.IconShieldCrossedDefault = _IconShieldCrossed.default;
|
|
|
4968
4971
|
var _IconShieldKeyhole = require("./IconShieldKeyhole/index.js");
|
|
4969
4972
|
exports.IconShieldKeyhole = _IconShieldKeyhole.IconShieldKeyhole;
|
|
4970
4973
|
exports.IconShieldKeyholeDefault = _IconShieldKeyhole.default;
|
|
4974
|
+
var _IconShieldSafeSearch = require("./IconShieldSafeSearch/index.js");
|
|
4975
|
+
exports.IconShieldSafeSearch = _IconShieldSafeSearch.IconShieldSafeSearch;
|
|
4976
|
+
exports.IconShieldSafeSearchDefault = _IconShieldSafeSearch.default;
|
|
4971
4977
|
var _IconShieldSearch = require("./IconShieldSearch/index.js");
|
|
4972
4978
|
exports.IconShieldSearch = _IconShieldSearch.IconShieldSearch;
|
|
4973
4979
|
exports.IconShieldSearchDefault = _IconShieldSearch.default;
|
|
@@ -6111,6 +6117,12 @@ exports.IconWashingMachineDefault = _IconWashingMachine.default;
|
|
|
6111
6117
|
var _IconWaste = require("./IconWaste/index.js");
|
|
6112
6118
|
exports.IconWaste = _IconWaste.IconWaste;
|
|
6113
6119
|
exports.IconWasteDefault = _IconWaste.default;
|
|
6120
|
+
var _IconWave = require("./IconWave/index.js");
|
|
6121
|
+
exports.IconWave = _IconWave.IconWave;
|
|
6122
|
+
exports.IconWaveDefault = _IconWave.default;
|
|
6123
|
+
var _IconWaveRound2 = require("./IconWaveRound2/index.js");
|
|
6124
|
+
exports.IconWaveRound2 = _IconWaveRound2.IconWaveRound2;
|
|
6125
|
+
exports.IconWaveRound2Default = _IconWaveRound2.default;
|
|
6114
6126
|
var _IconWeb3 = require("./IconWeb3/index.js");
|
|
6115
6127
|
exports.IconWeb3 = _IconWeb3.IconWeb3;
|
|
6116
6128
|
exports.IconWeb3Default = _IconWeb3.default;
|
package/index.mjs
CHANGED
|
@@ -445,6 +445,7 @@ export { IconChart4, default as IconChart4Default } from "./IconChart4/index.mjs
|
|
|
445
445
|
export { IconChart5, default as IconChart5Default } from "./IconChart5/index.mjs";
|
|
446
446
|
export { IconChart6, default as IconChart6Default } from "./IconChart6/index.mjs";
|
|
447
447
|
export { IconChart7, default as IconChart7Default } from "./IconChart7/index.mjs";
|
|
448
|
+
export { IconChart8, default as IconChart8Default } from "./IconChart8/index.mjs";
|
|
448
449
|
export { IconChartCompare, default as IconChartCompareDefault } from "./IconChartCompare/index.mjs";
|
|
449
450
|
export { IconChartCompareHorizontal, default as IconChartCompareHorizontalDefault } from "./IconChartCompareHorizontal/index.mjs";
|
|
450
451
|
export { IconChartWaterfall, default as IconChartWaterfallDefault } from "./IconChartWaterfall/index.mjs";
|
|
@@ -1654,6 +1655,7 @@ export { IconShieldCheck3, default as IconShieldCheck3Default } from "./IconShie
|
|
|
1654
1655
|
export { IconShieldCode, default as IconShieldCodeDefault } from "./IconShieldCode/index.mjs";
|
|
1655
1656
|
export { IconShieldCrossed, default as IconShieldCrossedDefault } from "./IconShieldCrossed/index.mjs";
|
|
1656
1657
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault } from "./IconShieldKeyhole/index.mjs";
|
|
1658
|
+
export { IconShieldSafeSearch, default as IconShieldSafeSearchDefault } from "./IconShieldSafeSearch/index.mjs";
|
|
1657
1659
|
export { IconShieldSearch, default as IconShieldSearchDefault } from "./IconShieldSearch/index.mjs";
|
|
1658
1660
|
export { IconShift, default as IconShiftDefault } from "./IconShift/index.mjs";
|
|
1659
1661
|
export { IconShimmer, default as IconShimmerDefault } from "./IconShimmer/index.mjs";
|
|
@@ -2035,6 +2037,8 @@ export { IconWarningSign, default as IconWarningSignDefault } from "./IconWarnin
|
|
|
2035
2037
|
export { IconWarp, default as IconWarpDefault } from "./IconWarp/index.mjs";
|
|
2036
2038
|
export { IconWashingMachine, default as IconWashingMachineDefault } from "./IconWashingMachine/index.mjs";
|
|
2037
2039
|
export { IconWaste, default as IconWasteDefault } from "./IconWaste/index.mjs";
|
|
2040
|
+
export { IconWave, default as IconWaveDefault } from "./IconWave/index.mjs";
|
|
2041
|
+
export { IconWaveRound2, default as IconWaveRound2Default } from "./IconWaveRound2/index.mjs";
|
|
2038
2042
|
export { IconWeb3, default as IconWeb3Default } from "./IconWeb3/index.mjs";
|
|
2039
2043
|
export { IconWebcam, default as IconWebcamDefault } from "./IconWebcam/index.mjs";
|
|
2040
2044
|
export { IconWebflow, default as IconWebflowDefault } from "./IconWebflow/index.mjs";
|
package/license-check.js
CHANGED
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ description: Use when inserting icons in React Native code that imports from @ce
|
|
|
5
5
|
|
|
6
6
|
# Central Icons — React Native
|
|
7
7
|
|
|
8
|
-
This skill helps you find icons from the Central Icons React Native library (`@central-icons-react-native/*`, version 1.1.
|
|
8
|
+
This skill helps you find icons from the Central Icons React Native library (`@central-icons-react-native/*`, version 1.1.303) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2089 icons is consistent across variants; only the stylistic rendering (round vs square, filled vs outlined, corner radius, stroke width) differs.
|
|
9
9
|
|
|
10
10
|
The library uses `react-native-svg` under the hood — it must be installed as a peer dependency in the consumer's project.
|
|
11
11
|
|
|
@@ -1576,6 +1576,7 @@ Need the raw, unmasked shapes instead (e.g. to style individual paths)? Set `mod
|
|
|
1576
1576
|
- **IconLock2** — lock-2, private
|
|
1577
1577
|
- **IconUnlocked2** — unlocked-2, unlock, private
|
|
1578
1578
|
- **IconKeyhole2** — keyhole-2, lock, unlock
|
|
1579
|
+
- **IconShieldSafeSearch** — shield-safe-search, child-protection
|
|
1579
1580
|
|
|
1580
1581
|
### Shopping & Payment
|
|
1581
1582
|
- **IconCreditCard1** — credit-card-1, card, payment
|
|
@@ -1877,6 +1878,8 @@ Need the raw, unmasked shapes instead (e.g. to style individual paths)? Set `mod
|
|
|
1877
1878
|
- **IconVoiceShare** — voice-share
|
|
1878
1879
|
- **IconConductor** — conductor, ochestrator, vibe
|
|
1879
1880
|
- **IconAlbums2** — albums-2, cover
|
|
1881
|
+
- **IconWave** — wave, waveform, signal, pulse, frequency
|
|
1882
|
+
- **IconWaveRound2** — wave-round-2, waveform, signal, pulse, frequency
|
|
1880
1883
|
|
|
1881
1884
|
### Sports
|
|
1882
1885
|
- **IconTennis** — tennis
|
|
@@ -1937,6 +1940,7 @@ Need the raw, unmasked shapes instead (e.g. to style individual paths)? Set `mod
|
|
|
1937
1940
|
- **IconStackedBarChart100Axis** — stacked-bar-chart-100-axis
|
|
1938
1941
|
- **IconStackedBarChartHorizontal100Axis** — stacked-bar-chart-horizontal-100-axis
|
|
1939
1942
|
- **IconTrending6** — trending-6, trends, downward
|
|
1943
|
+
- **IconChart8** — chart-8, statistics, flipchart, presentation, graph
|
|
1940
1944
|
|
|
1941
1945
|
### Things
|
|
1942
1946
|
- **IconToiletPaper** — toilet-paper, wipe
|