@central-icons-react-native/round-outlined-radius-0-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/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
@@ -18,7 +18,7 @@ const licenseCheck = async () => {
18
18
  },
19
19
  body: JSON.stringify({
20
20
  package: "central-icons-react-native/round-outlined-radius-0-stroke-2",
21
- version: "1.1.284",
21
+ version: "1.1.286",
22
22
  }),
23
23
  signal: controller.signal,
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
3
- "version": "1.1.284",
3
+ "version": "1.1.286",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "bugs": {
@@ -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.284) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2046 icons is consistent across variants; only the stylistic rendering (round vs square, filled vs outlined, corner radius, stroke width) differs.
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