@central-icons-react/round-outlined-radius-1-stroke-2 1.1.288 → 1.1.290
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/IconPackageDelivery/index.js +2 -2
- package/IconPackageDelivery/index.js.map +3 -3
- package/IconPackageDelivery/index.mjs +2 -2
- package/IconPackageDelivery/index.mjs.map +3 -3
- package/IconWindowSquareDelete/index.d.ts +4 -0
- package/IconWindowSquareDelete/index.js +3 -0
- package/IconWindowSquareDelete/index.js.map +11 -0
- package/IconWindowSquareDelete/index.mjs +3 -0
- package/IconWindowSquareDelete/index.mjs.map +11 -0
- package/IconWindowSquarePlus/index.d.ts +4 -0
- package/IconWindowSquarePlus/index.js +3 -0
- package/IconWindowSquarePlus/index.js.map +11 -0
- package/IconWindowSquarePlus/index.mjs +3 -0
- package/IconWindowSquarePlus/index.mjs.map +11 -0
- package/README.md +2 -0
- 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/SKILL.md +3 -1
package/index.d.ts
CHANGED
|
@@ -2035,6 +2035,8 @@ export { IconWindowApp, default as IconWindowAppDefault } from "./IconWindowApp"
|
|
|
2035
2035
|
export { IconWindowCursor, default as IconWindowCursorDefault } from "./IconWindowCursor";
|
|
2036
2036
|
export { IconWindowSparkle, default as IconWindowSparkleDefault } from "./IconWindowSparkle";
|
|
2037
2037
|
export { IconWindowSquare, default as IconWindowSquareDefault } from "./IconWindowSquare";
|
|
2038
|
+
export { IconWindowSquareDelete, default as IconWindowSquareDeleteDefault } from "./IconWindowSquareDelete";
|
|
2039
|
+
export { IconWindowSquarePlus, default as IconWindowSquarePlusDefault } from "./IconWindowSquarePlus";
|
|
2038
2040
|
export { IconWindsurf, default as IconWindsurfDefault } from "./IconWindsurf";
|
|
2039
2041
|
export { IconWip, default as IconWipDefault } from "./IconWip";
|
|
2040
2042
|
export { IconWizardHat, default as IconWizardHatDefault } from "./IconWizardHat";
|
package/index.js
CHANGED
|
@@ -6111,6 +6111,12 @@ exports.IconWindowSparkleDefault = _IconWindowSparkle.default;
|
|
|
6111
6111
|
var _IconWindowSquare = require("./IconWindowSquare/index.js");
|
|
6112
6112
|
exports.IconWindowSquare = _IconWindowSquare.IconWindowSquare;
|
|
6113
6113
|
exports.IconWindowSquareDefault = _IconWindowSquare.default;
|
|
6114
|
+
var _IconWindowSquareDelete = require("./IconWindowSquareDelete/index.js");
|
|
6115
|
+
exports.IconWindowSquareDelete = _IconWindowSquareDelete.IconWindowSquareDelete;
|
|
6116
|
+
exports.IconWindowSquareDeleteDefault = _IconWindowSquareDelete.default;
|
|
6117
|
+
var _IconWindowSquarePlus = require("./IconWindowSquarePlus/index.js");
|
|
6118
|
+
exports.IconWindowSquarePlus = _IconWindowSquarePlus.IconWindowSquarePlus;
|
|
6119
|
+
exports.IconWindowSquarePlusDefault = _IconWindowSquarePlus.default;
|
|
6114
6120
|
var _IconWindsurf = require("./IconWindsurf/index.js");
|
|
6115
6121
|
exports.IconWindsurf = _IconWindsurf.IconWindsurf;
|
|
6116
6122
|
exports.IconWindsurfDefault = _IconWindsurf.default;
|
package/index.mjs
CHANGED
|
@@ -2035,6 +2035,8 @@ export { IconWindowApp, default as IconWindowAppDefault } from "./IconWindowApp/
|
|
|
2035
2035
|
export { IconWindowCursor, default as IconWindowCursorDefault } from "./IconWindowCursor/index.mjs";
|
|
2036
2036
|
export { IconWindowSparkle, default as IconWindowSparkleDefault } from "./IconWindowSparkle/index.mjs";
|
|
2037
2037
|
export { IconWindowSquare, default as IconWindowSquareDefault } from "./IconWindowSquare/index.mjs";
|
|
2038
|
+
export { IconWindowSquareDelete, default as IconWindowSquareDeleteDefault } from "./IconWindowSquareDelete/index.mjs";
|
|
2039
|
+
export { IconWindowSquarePlus, default as IconWindowSquarePlusDefault } from "./IconWindowSquarePlus/index.mjs";
|
|
2038
2040
|
export { IconWindsurf, default as IconWindsurfDefault } from "./IconWindsurf/index.mjs";
|
|
2039
2041
|
export { IconWip, default as IconWipDefault } from "./IconWip/index.mjs";
|
|
2040
2042
|
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 code that imports from @central-i
|
|
|
5
5
|
|
|
6
6
|
# Central Icons — React
|
|
7
7
|
|
|
8
|
-
This skill helps you find icons from the Central Icons React library (`@central-icons-react/*`, version 1.1.
|
|
8
|
+
This skill helps you find icons from the Central Icons React library (`@central-icons-react/*`, version 1.1.290) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2058 icons is consistent across variants; only the stylistic rendering (round vs square, filled vs outlined, corner radius, stroke width) differs.
|
|
9
9
|
|
|
10
10
|
## Before you pick an import path
|
|
11
11
|
|
|
@@ -1228,6 +1228,8 @@ The catalog below is the authoritative list of icons available in this library.
|
|
|
1228
1228
|
- **IconCard** — card, profile, avatar, account
|
|
1229
1229
|
- **IconUnblock** — unblock, unban
|
|
1230
1230
|
- **IconWindowSquare** — window-square, browser, app, desktop
|
|
1231
|
+
- **IconWindowSquarePlus** — window-square-plus, browser, app, desktop
|
|
1232
|
+
- **IconWindowSquareDelete** — window-square-delete, browser, app, desktop
|
|
1231
1233
|
|
|
1232
1234
|
### Keyboard
|
|
1233
1235
|
- **IconRunShortcut** — run-shortcut, slash, skills
|