@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.241 → 1.1.242

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 (38) hide show
  1. package/IconChevronTriangleDownMedium/index.d.ts +4 -0
  2. package/IconChevronTriangleDownMedium/index.js +2 -0
  3. package/IconChevronTriangleDownMedium/index.js.map +1 -0
  4. package/IconChevronTriangleDownMedium/index.mjs +2 -0
  5. package/IconChevronTriangleDownMedium/index.mjs.map +1 -0
  6. package/IconChevronTriangleLeftMedium/index.d.ts +4 -0
  7. package/IconChevronTriangleLeftMedium/index.js +2 -0
  8. package/IconChevronTriangleLeftMedium/index.js.map +1 -0
  9. package/IconChevronTriangleLeftMedium/index.mjs +2 -0
  10. package/IconChevronTriangleLeftMedium/index.mjs.map +1 -0
  11. package/IconChevronTriangleRightMedium/index.d.ts +4 -0
  12. package/IconChevronTriangleRightMedium/index.js +2 -0
  13. package/IconChevronTriangleRightMedium/index.js.map +1 -0
  14. package/IconChevronTriangleRightMedium/index.mjs +2 -0
  15. package/IconChevronTriangleRightMedium/index.mjs.map +1 -0
  16. package/IconChevronTriangleUpMedium/index.d.ts +4 -0
  17. package/IconChevronTriangleUpMedium/index.js +2 -0
  18. package/IconChevronTriangleUpMedium/index.js.map +1 -0
  19. package/IconChevronTriangleUpMedium/index.mjs +2 -0
  20. package/IconChevronTriangleUpMedium/index.mjs.map +1 -0
  21. package/IconVoiceover/index.d.ts +4 -0
  22. package/IconVoiceover/index.js +2 -0
  23. package/IconVoiceover/index.js.map +1 -0
  24. package/IconVoiceover/index.mjs +2 -0
  25. package/IconVoiceover/index.mjs.map +1 -0
  26. package/README.md +5 -0
  27. package/filtered-icons.json +72 -2
  28. package/icons/index.d.ts +5 -0
  29. package/icons-index.json +17 -7
  30. package/index.d.ts +5 -0
  31. package/index.js +1 -1
  32. package/index.js.map +1 -1
  33. package/index.mjs +1 -1
  34. package/index.mjs.map +1 -1
  35. package/license-check.js +1 -1
  36. package/package.json +1 -1
  37. package/skills/central-icons-react-native/SKILL.md +8 -3
  38. package/tsx-icons.json +37 -2
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/square-filled-radius-0-stroke-2",
21
- version: "1.1.241",
21
+ version: "1.1.242",
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/square-filled-radius-0-stroke-2",
3
- "version": "1.1.241",
3
+ "version": "1.1.242",
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.241) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2001 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.242) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2006 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
 
@@ -201,6 +201,7 @@ Do **not** use DOM accessibility attrs (`aria-hidden`, `role`). React Native use
201
201
  - **IconReduceMotion** — reduce-motion
202
202
  - **IconSquareLinesBottom** — square-lines-bottom, transcription
203
203
  - **IconVoiceControl** — voice-control
204
+ - **IconVoiceover** — voiceover, sound
204
205
 
205
206
  ### Arrows
206
207
 
@@ -299,8 +300,12 @@ Do **not** use DOM accessibility attrs (`aria-hidden`, `role`). React Native use
299
300
  - **IconChevronTop** — chevron-top
300
301
  - **IconChevronTopMedium** — chevron-top-medium
301
302
  - **IconChevronTopSmall** — chevron-top-small
302
- - **IconChevronTriangleDownSmall** — chevron-triangle-down-small, dropdown
303
- - **IconChevronTriangleUpSmall** — chevron-triangle-up-small, dropdown
303
+ - **IconChevronTriangleDownMedium** — chevron-triangle-down-medium, dropdown, caret
304
+ - **IconChevronTriangleDownSmall** — chevron-triangle-down-small, dropdown, caret
305
+ - **IconChevronTriangleLeftMedium** — chevron-triangle-left-medium, dropdown, caret
306
+ - **IconChevronTriangleRightMedium** — chevron-triangle-right-medium, dropdown, caret
307
+ - **IconChevronTriangleUpMedium** — chevron-triangle-up-medium, dropdown, caret
308
+ - **IconChevronTriangleUpSmall** — chevron-triangle-up-small, dropdown, caret
304
309
  - **IconCollaborationPointerLeft** — collaboration-pointer-left, cursor, agents
305
310
  - **IconCollaborationPointerRight** — collaboration-pointer-right, cursor, agents
306
311
  - **IconComputerUse** — computer-use, cursor
package/tsx-icons.json CHANGED
@@ -3353,18 +3353,46 @@
3353
3353
  "iconName": "chevron-top-small",
3354
3354
  "pathname": "src/IconChevronTopSmall"
3355
3355
  },
3356
+ {
3357
+ "svg": "<Path d=\"M12 17.5625L4.86523 9H19.1348L12 17.5625Z\" fill=\"currentColor\"/>",
3358
+ "tags": "Path",
3359
+ "componentName": "IconChevronTriangleDownMedium",
3360
+ "iconName": "chevron-triangle-down-medium, dropdown, caret",
3361
+ "pathname": "src/IconChevronTriangleDownMedium"
3362
+ },
3356
3363
  {
3357
3364
  "svg": "<Path d=\"M7 10L12 16.6667L17 10H7Z\" fill=\"currentColor\"/>",
3358
3365
  "tags": "Path",
3359
3366
  "componentName": "IconChevronTriangleDownSmall",
3360
- "iconName": "chevron-triangle-down-small, dropdown",
3367
+ "iconName": "chevron-triangle-down-small, dropdown, caret",
3361
3368
  "pathname": "src/IconChevronTriangleDownSmall"
3362
3369
  },
3370
+ {
3371
+ "svg": "<Path d=\"M6.4375 12L15 19.1348V4.86523L6.4375 12Z\" fill=\"currentColor\"/>",
3372
+ "tags": "Path",
3373
+ "componentName": "IconChevronTriangleLeftMedium",
3374
+ "iconName": "chevron-triangle-left-medium, dropdown, caret",
3375
+ "pathname": "src/IconChevronTriangleLeftMedium"
3376
+ },
3377
+ {
3378
+ "svg": "<Path d=\"M17.5625 12L9 19.1348V4.86523L17.5625 12Z\" fill=\"currentColor\"/>",
3379
+ "tags": "Path",
3380
+ "componentName": "IconChevronTriangleRightMedium",
3381
+ "iconName": "chevron-triangle-right-medium, dropdown, caret",
3382
+ "pathname": "src/IconChevronTriangleRightMedium"
3383
+ },
3384
+ {
3385
+ "svg": "<Path d=\"M12 6.4375L4.86523 15H19.1348L12 6.4375Z\" fill=\"currentColor\"/>",
3386
+ "tags": "Path",
3387
+ "componentName": "IconChevronTriangleUpMedium",
3388
+ "iconName": "chevron-triangle-up-medium, dropdown, caret",
3389
+ "pathname": "src/IconChevronTriangleUpMedium"
3390
+ },
3363
3391
  {
3364
3392
  "svg": "<Path d=\"M12 7.33301L7 13.9997H17L12 7.33301Z\" fill=\"currentColor\"/>",
3365
3393
  "tags": "Path",
3366
3394
  "componentName": "IconChevronTriangleUpSmall",
3367
- "iconName": "chevron-triangle-up-small, dropdown",
3395
+ "iconName": "chevron-triangle-up-small, dropdown, caret",
3368
3396
  "pathname": "src/IconChevronTriangleUpSmall"
3369
3397
  },
3370
3398
  {
@@ -13559,6 +13587,13 @@
13559
13587
  "iconName": "voice-mode, voice-settings",
13560
13588
  "pathname": "src/IconVoiceMode"
13561
13589
  },
13590
+ {
13591
+ "svg": "<Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 9.5H8V14.5H10L11.5 16.5H13V7.5H11.5L10 9.5ZM13.9004 10.2998C15.0335 11.1498 15.0335 12.8502 13.9004 13.7002L15.0996 15.2998C17.2996 13.6498 17.2996 10.3502 15.0996 8.7002L13.9004 10.2998Z\" fill=\"currentColor\"/>",
13592
+ "tags": "Path",
13593
+ "componentName": "IconVoiceover",
13594
+ "iconName": "voiceover, sound",
13595
+ "pathname": "src/IconVoiceover"
13596
+ },
13562
13597
  {
13563
13598
  "svg": "<Path d=\"M7.50391 3H5.50391V17H7.50391V3Z\" fill=\"currentColor\"/><Path d=\"M14.5039 4H12.5039V8.5H14.5039V4Z\" fill=\"currentColor\"/><Path d=\"M11.0039 6H9.00391V11H11.0039V6Z\" fill=\"currentColor\"/><Path d=\"M4.00391 8H2.00391V12H4.00391V8Z\" fill=\"currentColor\"/><Path d=\"M19.0017 15.5C19.0017 16.8807 17.8824 18 16.5017 18C15.121 18 14.0017 16.8807 14.0017 15.5C14.0017 14.1193 15.121 13 16.5017 13C17.8824 13 19.0017 14.1193 19.0017 15.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.0017 15.5C11.0017 12.4624 13.4641 10 16.5017 10C19.5393 10 22.0017 12.4624 22.0017 15.5C22.0017 18.5376 19.5393 21 16.5017 21C13.4641 21 11.0017 18.5376 11.0017 15.5ZM16.5017 12C14.5687 12 13.0017 13.567 13.0017 15.5C13.0017 17.433 14.5687 19 16.5017 19C18.4347 19 20.0017 17.433 20.0017 15.5C20.0017 13.567 18.4347 12 16.5017 12Z\" fill=\"currentColor\"/>",
13564
13599
  "tags": "Path",