@central-icons-react/round-outlined-radius-0-stroke-1 1.1.280 → 1.1.281
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/IconFastShipping/index.js +2 -2
- package/IconFastShipping/index.js.map +2 -2
- package/IconFastShipping/index.mjs +2 -2
- package/IconFastShipping/index.mjs.map +2 -2
- package/IconGrid/index.d.ts +4 -0
- package/IconGrid/index.js +3 -0
- package/IconGrid/index.js.map +11 -0
- package/IconGrid/index.mjs +3 -0
- package/IconGrid/index.mjs.map +11 -0
- package/IconGridBox/index.d.ts +4 -0
- package/IconGridBox/index.js +3 -0
- package/IconGridBox/index.js.map +11 -0
- package/IconGridBox/index.mjs +3 -0
- package/IconGridBox/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
|
@@ -968,6 +968,8 @@ export { IconGraduateCap2, default as IconGraduateCap2Default } from "./IconGrad
|
|
|
968
968
|
export { IconGranola, default as IconGranolaDefault } from "./IconGranola";
|
|
969
969
|
export { IconGrass, default as IconGrassDefault } from "./IconGrass";
|
|
970
970
|
export { IconGreenPower, default as IconGreenPowerDefault } from "./IconGreenPower";
|
|
971
|
+
export { IconGrid, default as IconGridDefault } from "./IconGrid";
|
|
972
|
+
export { IconGridBox, default as IconGridBoxDefault } from "./IconGridBox";
|
|
971
973
|
export { IconGrok, default as IconGrokDefault } from "./IconGrok";
|
|
972
974
|
export { IconGroup1, default as IconGroup1Default } from "./IconGroup1";
|
|
973
975
|
export { IconGroup2, default as IconGroup2Default } from "./IconGroup2";
|
package/index.js
CHANGED
|
@@ -2910,6 +2910,12 @@ exports.IconGrassDefault = _IconGrass.default;
|
|
|
2910
2910
|
var _IconGreenPower = require("./IconGreenPower/index.js");
|
|
2911
2911
|
exports.IconGreenPower = _IconGreenPower.IconGreenPower;
|
|
2912
2912
|
exports.IconGreenPowerDefault = _IconGreenPower.default;
|
|
2913
|
+
var _IconGrid = require("./IconGrid/index.js");
|
|
2914
|
+
exports.IconGrid = _IconGrid.IconGrid;
|
|
2915
|
+
exports.IconGridDefault = _IconGrid.default;
|
|
2916
|
+
var _IconGridBox = require("./IconGridBox/index.js");
|
|
2917
|
+
exports.IconGridBox = _IconGridBox.IconGridBox;
|
|
2918
|
+
exports.IconGridBoxDefault = _IconGridBox.default;
|
|
2913
2919
|
var _IconGrok = require("./IconGrok/index.js");
|
|
2914
2920
|
exports.IconGrok = _IconGrok.IconGrok;
|
|
2915
2921
|
exports.IconGrokDefault = _IconGrok.default;
|
package/index.mjs
CHANGED
|
@@ -968,6 +968,8 @@ export { IconGraduateCap2, default as IconGraduateCap2Default } from "./IconGrad
|
|
|
968
968
|
export { IconGranola, default as IconGranolaDefault } from "./IconGranola/index.mjs";
|
|
969
969
|
export { IconGrass, default as IconGrassDefault } from "./IconGrass/index.mjs";
|
|
970
970
|
export { IconGreenPower, default as IconGreenPowerDefault } from "./IconGreenPower/index.mjs";
|
|
971
|
+
export { IconGrid, default as IconGridDefault } from "./IconGrid/index.mjs";
|
|
972
|
+
export { IconGridBox, default as IconGridBoxDefault } from "./IconGridBox/index.mjs";
|
|
971
973
|
export { IconGrok, default as IconGrokDefault } from "./IconGrok/index.mjs";
|
|
972
974
|
export { IconGroup1, default as IconGroup1Default } from "./IconGroup1/index.mjs";
|
|
973
975
|
export { IconGroup2, default as IconGroup2Default } from "./IconGroup2/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.281) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2043 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
|
|
|
@@ -1303,6 +1303,8 @@ The catalog below is the authoritative list of icons available in this library.
|
|
|
1303
1303
|
- **IconBottombarHiddenBottomWide** — bottombar-hidden-bottom-wide
|
|
1304
1304
|
- **IconLayoutAlignLeftRight** — layout-align-left-right, padding
|
|
1305
1305
|
- **IconLayoutAlignTopBottom** — layout-align-top-bottom, padding
|
|
1306
|
+
- **IconGrid** — grid, camera-grid
|
|
1307
|
+
- **IconGridBox** — grid-box, grid-9
|
|
1306
1308
|
|
|
1307
1309
|
### Location
|
|
1308
1310
|
- **IconRadar1** — radar, location, search
|