@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.284 → 1.1.286
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/IconCompassPointerSquare/index.d.ts +4 -0
- package/IconCompassPointerSquare/index.js +3 -0
- package/IconCompassPointerSquare/index.js.map +11 -0
- package/IconCompassPointerSquare/index.mjs +3 -0
- package/IconCompassPointerSquare/index.mjs.map +11 -0
- package/IconWindow2/index.js +2 -2
- package/IconWindow2/index.js.map +3 -3
- package/IconWindow2/index.mjs +2 -2
- package/IconWindow2/index.mjs.map +3 -3
- package/IconWindowApp/index.js +2 -2
- package/IconWindowApp/index.js.map +3 -3
- package/IconWindowApp/index.mjs +2 -2
- package/IconWindowApp/index.mjs.map +3 -3
- package/IconWindowSquare/index.d.ts +4 -0
- package/IconWindowSquare/index.js +3 -0
- package/IconWindowSquare/index.js.map +11 -0
- package/IconWindowSquare/index.mjs +3 -0
- package/IconWindowSquare/index.mjs.map +11 -0
- package/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
package/index.d.ts
CHANGED
|
@@ -588,6 +588,7 @@ export { IconColumns3Wide, default as IconColumns3WideDefault } from "./IconColu
|
|
|
588
588
|
export { IconComboChartAxis, default as IconComboChartAxisDefault } from "./IconComboChartAxis";
|
|
589
589
|
export { IconCommits, default as IconCommitsDefault } from "./IconCommits";
|
|
590
590
|
export { IconCompassPointer, default as IconCompassPointerDefault } from "./IconCompassPointer";
|
|
591
|
+
export { IconCompassPointerSquare, default as IconCompassPointerSquareDefault } from "./IconCompassPointerSquare";
|
|
591
592
|
export { IconCompassRound, default as IconCompassRoundDefault } from "./IconCompassRound";
|
|
592
593
|
export { IconCompassSquare, default as IconCompassSquareDefault } from "./IconCompassSquare";
|
|
593
594
|
export { IconComponents, default as IconComponentsDefault } from "./IconComponents";
|
|
@@ -2025,6 +2026,7 @@ export { IconWindow2, default as IconWindow2Default } from "./IconWindow2";
|
|
|
2025
2026
|
export { IconWindowApp, default as IconWindowAppDefault } from "./IconWindowApp";
|
|
2026
2027
|
export { IconWindowCursor, default as IconWindowCursorDefault } from "./IconWindowCursor";
|
|
2027
2028
|
export { IconWindowSparkle, default as IconWindowSparkleDefault } from "./IconWindowSparkle";
|
|
2029
|
+
export { IconWindowSquare, default as IconWindowSquareDefault } from "./IconWindowSquare";
|
|
2028
2030
|
export { IconWindsurf, default as IconWindsurfDefault } from "./IconWindsurf";
|
|
2029
2031
|
export { IconWip, default as IconWipDefault } from "./IconWip";
|
|
2030
2032
|
export { IconWizardHat, default as IconWizardHatDefault } from "./IconWizardHat";
|
package/index.js
CHANGED
|
@@ -1770,6 +1770,9 @@ exports.IconCommitsDefault = _IconCommits.default;
|
|
|
1770
1770
|
var _IconCompassPointer = require("./IconCompassPointer/index.js");
|
|
1771
1771
|
exports.IconCompassPointer = _IconCompassPointer.IconCompassPointer;
|
|
1772
1772
|
exports.IconCompassPointerDefault = _IconCompassPointer.default;
|
|
1773
|
+
var _IconCompassPointerSquare = require("./IconCompassPointerSquare/index.js");
|
|
1774
|
+
exports.IconCompassPointerSquare = _IconCompassPointerSquare.IconCompassPointerSquare;
|
|
1775
|
+
exports.IconCompassPointerSquareDefault = _IconCompassPointerSquare.default;
|
|
1773
1776
|
var _IconCompassRound = require("./IconCompassRound/index.js");
|
|
1774
1777
|
exports.IconCompassRound = _IconCompassRound.IconCompassRound;
|
|
1775
1778
|
exports.IconCompassRoundDefault = _IconCompassRound.default;
|
|
@@ -6081,6 +6084,9 @@ exports.IconWindowCursorDefault = _IconWindowCursor.default;
|
|
|
6081
6084
|
var _IconWindowSparkle = require("./IconWindowSparkle/index.js");
|
|
6082
6085
|
exports.IconWindowSparkle = _IconWindowSparkle.IconWindowSparkle;
|
|
6083
6086
|
exports.IconWindowSparkleDefault = _IconWindowSparkle.default;
|
|
6087
|
+
var _IconWindowSquare = require("./IconWindowSquare/index.js");
|
|
6088
|
+
exports.IconWindowSquare = _IconWindowSquare.IconWindowSquare;
|
|
6089
|
+
exports.IconWindowSquareDefault = _IconWindowSquare.default;
|
|
6084
6090
|
var _IconWindsurf = require("./IconWindsurf/index.js");
|
|
6085
6091
|
exports.IconWindsurf = _IconWindsurf.IconWindsurf;
|
|
6086
6092
|
exports.IconWindsurfDefault = _IconWindsurf.default;
|
package/index.mjs
CHANGED
|
@@ -588,6 +588,7 @@ export { IconColumns3Wide, default as IconColumns3WideDefault } from "./IconColu
|
|
|
588
588
|
export { IconComboChartAxis, default as IconComboChartAxisDefault } from "./IconComboChartAxis/index.mjs";
|
|
589
589
|
export { IconCommits, default as IconCommitsDefault } from "./IconCommits/index.mjs";
|
|
590
590
|
export { IconCompassPointer, default as IconCompassPointerDefault } from "./IconCompassPointer/index.mjs";
|
|
591
|
+
export { IconCompassPointerSquare, default as IconCompassPointerSquareDefault } from "./IconCompassPointerSquare/index.mjs";
|
|
591
592
|
export { IconCompassRound, default as IconCompassRoundDefault } from "./IconCompassRound/index.mjs";
|
|
592
593
|
export { IconCompassSquare, default as IconCompassSquareDefault } from "./IconCompassSquare/index.mjs";
|
|
593
594
|
export { IconComponents, default as IconComponentsDefault } from "./IconComponents/index.mjs";
|
|
@@ -2025,6 +2026,7 @@ export { IconWindow2, default as IconWindow2Default } from "./IconWindow2/index.
|
|
|
2025
2026
|
export { IconWindowApp, default as IconWindowAppDefault } from "./IconWindowApp/index.mjs";
|
|
2026
2027
|
export { IconWindowCursor, default as IconWindowCursorDefault } from "./IconWindowCursor/index.mjs";
|
|
2027
2028
|
export { IconWindowSparkle, default as IconWindowSparkleDefault } from "./IconWindowSparkle/index.mjs";
|
|
2029
|
+
export { IconWindowSquare, default as IconWindowSquareDefault } from "./IconWindowSquare/index.mjs";
|
|
2028
2030
|
export { IconWindsurf, default as IconWindsurfDefault } from "./IconWindsurf/index.mjs";
|
|
2029
2031
|
export { IconWip, default as IconWipDefault } from "./IconWip/index.mjs";
|
|
2030
2032
|
export { IconWizardHat, default as IconWizardHatDefault } from "./IconWizardHat/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.286) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2048 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
|
|
|
@@ -1225,6 +1225,7 @@ Do **not** use DOM accessibility attrs (`aria-hidden`, `role`). React Native use
|
|
|
1225
1225
|
- **IconCheckmark2Medium** — checkmark-2-medium
|
|
1226
1226
|
- **IconCard** — card, profile, avatar, account
|
|
1227
1227
|
- **IconUnblock** — unblock, unban
|
|
1228
|
+
- **IconWindowSquare** — window-square, browser, app, desktop
|
|
1228
1229
|
|
|
1229
1230
|
### Keyboard
|
|
1230
1231
|
- **IconRunShortcut** — run-shortcut, slash, skills
|
|
@@ -1326,6 +1327,7 @@ Do **not** use DOM accessibility attrs (`aria-hidden`, `role`). React Native use
|
|
|
1326
1327
|
- **IconMapPin2** — map-pin-2, location
|
|
1327
1328
|
- **IconMapEditFlat** — map-edit-flat, route, plan
|
|
1328
1329
|
- **IconPinFocus** — pin-focus, zoom, select
|
|
1330
|
+
- **IconCompassPointerSquare** — compass-pointer-square, gps, direction
|
|
1329
1331
|
|
|
1330
1332
|
### Nature & Energy
|
|
1331
1333
|
- **IconExposure2** — exposure-2, macro, flower
|