@central-icons-react/round-outlined-radius-3-stroke-2 1.1.270 → 1.1.272

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.
Files changed (42) hide show
  1. package/IconFistbump/index.js +2 -2
  2. package/IconFistbump/index.js.map +3 -3
  3. package/IconFistbump/index.mjs +2 -2
  4. package/IconFistbump/index.mjs.map +3 -3
  5. package/IconHandTouch/index.d.ts +4 -0
  6. package/IconHandTouch/index.js +3 -0
  7. package/IconHandTouch/index.js.map +11 -0
  8. package/IconHandTouch/index.mjs +3 -0
  9. package/IconHandTouch/index.mjs.map +11 -0
  10. package/IconMagicHands/index.js +2 -2
  11. package/IconMagicHands/index.js.map +3 -3
  12. package/IconMagicHands/index.mjs +2 -2
  13. package/IconMagicHands/index.mjs.map +3 -3
  14. package/IconPinch/index.js +2 -2
  15. package/IconPinch/index.js.map +3 -3
  16. package/IconPinch/index.mjs +2 -2
  17. package/IconPinch/index.mjs.map +3 -3
  18. package/IconScript/index.js +2 -2
  19. package/IconScript/index.js.map +3 -3
  20. package/IconScript/index.mjs +2 -2
  21. package/IconScript/index.mjs.map +3 -3
  22. package/IconScript2/index.js +2 -2
  23. package/IconScript2/index.js.map +3 -3
  24. package/IconScript2/index.mjs +2 -2
  25. package/IconScript2/index.mjs.map +3 -3
  26. package/IconTouch/index.js +2 -2
  27. package/IconTouch/index.js.map +3 -3
  28. package/IconTouch/index.mjs +2 -2
  29. package/IconTouch/index.mjs.map +3 -3
  30. package/README.md +1 -0
  31. package/icons/index.d.ts +1 -1
  32. package/icons/index.js +2 -2
  33. package/icons/index.js.map +3 -3
  34. package/icons/index.mjs +2 -2
  35. package/icons/index.mjs.map +3 -3
  36. package/icons-index.json +4 -4
  37. package/index.d.ts +1 -0
  38. package/index.js +3 -0
  39. package/index.mjs +1 -0
  40. package/license-check.js +1 -1
  41. package/package.json +1 -1
  42. package/skills/central-icons-react/SKILL.md +2 -1
package/index.d.ts CHANGED
@@ -982,6 +982,7 @@ export { IconHammer2, default as IconHammer2Default } from "./IconHammer2";
982
982
  export { IconHand4Finger, default as IconHand4FingerDefault } from "./IconHand4Finger";
983
983
  export { IconHand5Finger, default as IconHand5FingerDefault } from "./IconHand5Finger";
984
984
  export { IconHandBell, default as IconHandBellDefault } from "./IconHandBell";
985
+ export { IconHandTouch, default as IconHandTouchDefault } from "./IconHandTouch";
985
986
  export { IconHandshake, default as IconHandshakeDefault } from "./IconHandshake";
986
987
  export { IconHaptic, default as IconHapticDefault } from "./IconHaptic";
987
988
  export { IconHapticFeedback, default as IconHapticFeedbackDefault } from "./IconHapticFeedback";
package/index.js CHANGED
@@ -2952,6 +2952,9 @@ exports.IconHand5FingerDefault = _IconHand5Finger.default;
2952
2952
  var _IconHandBell = require("./IconHandBell/index.js");
2953
2953
  exports.IconHandBell = _IconHandBell.IconHandBell;
2954
2954
  exports.IconHandBellDefault = _IconHandBell.default;
2955
+ var _IconHandTouch = require("./IconHandTouch/index.js");
2956
+ exports.IconHandTouch = _IconHandTouch.IconHandTouch;
2957
+ exports.IconHandTouchDefault = _IconHandTouch.default;
2955
2958
  var _IconHandshake = require("./IconHandshake/index.js");
2956
2959
  exports.IconHandshake = _IconHandshake.IconHandshake;
2957
2960
  exports.IconHandshakeDefault = _IconHandshake.default;
package/index.mjs CHANGED
@@ -982,6 +982,7 @@ export { IconHammer2, default as IconHammer2Default } from "./IconHammer2/index.
982
982
  export { IconHand4Finger, default as IconHand4FingerDefault } from "./IconHand4Finger/index.mjs";
983
983
  export { IconHand5Finger, default as IconHand5FingerDefault } from "./IconHand5Finger/index.mjs";
984
984
  export { IconHandBell, default as IconHandBellDefault } from "./IconHandBell/index.mjs";
985
+ export { IconHandTouch, default as IconHandTouchDefault } from "./IconHandTouch/index.mjs";
985
986
  export { IconHandshake, default as IconHandshakeDefault } from "./IconHandshake/index.mjs";
986
987
  export { IconHaptic, default as IconHapticDefault } from "./IconHaptic/index.mjs";
987
988
  export { IconHapticFeedback, default as IconHapticFeedbackDefault } from "./IconHapticFeedback/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/round-outlined-radius-3-stroke-2",
21
- version: "1.1.270",
21
+ version: "1.1.272",
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/round-outlined-radius-3-stroke-2",
3
- "version": "1.1.270",
3
+ "version": "1.1.272",
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 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.270) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2036 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 library (`@central-icons-react/*`, version 1.1.272) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2037 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
 
@@ -1007,6 +1007,7 @@ The catalog below is the authoritative list of icons available in this library.
1007
1007
  - **IconHandshake** — handshake, heart
1008
1008
  - **IconBecepsLeftArm** — beceps-left-arm, strong, flex, power
1009
1009
  - **IconBecepsRightArm** — beceps-right-arm, strong, flex, power
1010
+ - **IconHandTouch** — hand-touch, input, area, target
1010
1011
 
1011
1012
  ### Health & Medical
1012
1013
  - **IconMask1** — mask, medical-mask, covid