@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.241 → 1.1.243
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/IconChevronTriangleDownMedium/index.d.ts +4 -0
- package/IconChevronTriangleDownMedium/index.js +2 -0
- package/IconChevronTriangleDownMedium/index.js.map +1 -0
- package/IconChevronTriangleDownMedium/index.mjs +2 -0
- package/IconChevronTriangleDownMedium/index.mjs.map +1 -0
- package/IconChevronTriangleLeftMedium/index.d.ts +4 -0
- package/IconChevronTriangleLeftMedium/index.js +2 -0
- package/IconChevronTriangleLeftMedium/index.js.map +1 -0
- package/IconChevronTriangleLeftMedium/index.mjs +2 -0
- package/IconChevronTriangleLeftMedium/index.mjs.map +1 -0
- package/IconChevronTriangleRightMedium/index.d.ts +4 -0
- package/IconChevronTriangleRightMedium/index.js +2 -0
- package/IconChevronTriangleRightMedium/index.js.map +1 -0
- package/IconChevronTriangleRightMedium/index.mjs +2 -0
- package/IconChevronTriangleRightMedium/index.mjs.map +1 -0
- package/IconChevronTriangleUpMedium/index.d.ts +4 -0
- package/IconChevronTriangleUpMedium/index.js +2 -0
- package/IconChevronTriangleUpMedium/index.js.map +1 -0
- package/IconChevronTriangleUpMedium/index.mjs +2 -0
- package/IconChevronTriangleUpMedium/index.mjs.map +1 -0
- package/IconEyedropper/index.d.ts +4 -0
- package/IconEyedropper/index.js +2 -0
- package/IconEyedropper/index.js.map +1 -0
- package/IconEyedropper/index.mjs +2 -0
- package/IconEyedropper/index.mjs.map +1 -0
- package/IconEyedropper2/index.d.ts +4 -0
- package/{IconColorPicker → IconEyedropper2}/index.js +1 -1
- package/{IconColorPicker → IconEyedropper2}/index.js.map +1 -1
- package/{IconColorPicker → IconEyedropper2}/index.mjs +1 -1
- package/{IconColorPicker → IconEyedropper2}/index.mjs.map +1 -1
- package/IconThings/index.js +1 -1
- package/IconThings/index.js.map +1 -1
- package/IconThings/index.mjs +1 -1
- package/IconThings/index.mjs.map +1 -1
- package/IconVoiceover/index.d.ts +4 -0
- package/IconVoiceover/index.js +2 -0
- package/IconVoiceover/index.js.map +1 -0
- package/IconVoiceover/index.mjs +2 -0
- package/IconVoiceover/index.mjs.map +1 -0
- package/IconVoiceover2/index.d.ts +4 -0
- package/IconVoiceover2/index.js +2 -0
- package/IconVoiceover2/index.js.map +1 -0
- package/IconVoiceover2/index.mjs +2 -0
- package/IconVoiceover2/index.mjs.map +1 -0
- package/README.md +8 -1
- package/filtered-icons.json +115 -17
- package/icons/index.d.ts +8 -1
- package/icons-index.json +24 -10
- package/index.d.ts +8 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +11 -4
- package/tsx-icons.json +59 -10
- package/IconColorPicker/index.d.ts +0 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconVoiceover2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 13.9334C17.6888 13.5744 20.2815 11.7633 22 8.49996C18.3224 1.51668 10.642 1.18341 6.58228 7.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 8.5C16.25 9.74264 15.2426 10.75 14 10.75C12.7574 10.75 11.75 9.74264 11.75 8.5C11.75 7.25736 12.7574 6.25 14 6.25C15.2426 6.25 16.25 7.25736 16.25 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 18.5C12.3333 17.25 12.3333 14.75 11 13.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 18.5V13.5H4L5.5 11H8V21H5.5L4 18.5H2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVoiceover2_exports","__export","IconVoiceover2","IconVoiceover2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceover2","props","React","CentralIconBase","IconVoiceover2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var C=t=>r.createElement(n,{...t},r.createElement(e,{d:"M15 13.9334C17.6888 13.5744 20.2815 11.7633 22 8.49996C18.3224 1.51668 10.642 1.18341 6.58228 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16.25 8.5C16.25 9.74264 15.2426 10.75 14 10.75C12.7574 10.75 11.75 9.74264 11.75 8.5C11.75 7.25736 12.7574 6.25 14 6.25C15.2426 6.25 16.25 7.25736 16.25 8.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M11 18.5C12.3333 17.25 12.3333 14.75 11 13.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2 18.5V13.5H4L5.5 11H8V21H5.5L4 18.5H2Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),h=C;export{C as IconVoiceover2,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconVoiceover2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 13.9334C17.6888 13.5744 20.2815 11.7633 22 8.49996C18.3224 1.51668 10.642 1.18341 6.58228 7.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 8.5C16.25 9.74264 15.2426 10.75 14 10.75C12.7574 10.75 11.75 9.74264 11.75 8.5C11.75 7.25736 12.7574 6.25 14 6.25C15.2426 6.25 16.25 7.25736 16.25 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 18.5C12.3333 17.25 12.3333 14.75 11 13.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 18.5V13.5H4L5.5 11H8V21H5.5L4 18.5H2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceover2","props","React","CentralIconBase","IconVoiceover2_default"]}
|
package/README.md
CHANGED
|
@@ -249,6 +249,8 @@ Below is a complete list of available icons:
|
|
|
249
249
|
- IconReduceMotion
|
|
250
250
|
- IconSquareLinesBottom
|
|
251
251
|
- IconVoiceControl
|
|
252
|
+
- IconVoiceover
|
|
253
|
+
- IconVoiceover2
|
|
252
254
|
|
|
253
255
|
### Arrows
|
|
254
256
|
|
|
@@ -347,7 +349,11 @@ Below is a complete list of available icons:
|
|
|
347
349
|
- IconChevronTop
|
|
348
350
|
- IconChevronTopMedium
|
|
349
351
|
- IconChevronTopSmall
|
|
352
|
+
- IconChevronTriangleDownMedium
|
|
350
353
|
- IconChevronTriangleDownSmall
|
|
354
|
+
- IconChevronTriangleLeftMedium
|
|
355
|
+
- IconChevronTriangleRightMedium
|
|
356
|
+
- IconChevronTriangleUpMedium
|
|
351
357
|
- IconChevronTriangleUpSmall
|
|
352
358
|
- IconCollaborationPointerLeft
|
|
353
359
|
- IconCollaborationPointerRight
|
|
@@ -706,7 +712,6 @@ Below is a complete list of available icons:
|
|
|
706
712
|
- IconCircle
|
|
707
713
|
- IconColorPalette
|
|
708
714
|
- IconColorPalette2
|
|
709
|
-
- IconColorPicker
|
|
710
715
|
- IconColorRoll
|
|
711
716
|
- IconColors
|
|
712
717
|
- IconColorSwatch
|
|
@@ -720,6 +725,8 @@ Below is a complete list of available icons:
|
|
|
720
725
|
- IconEditSmall2
|
|
721
726
|
- IconEraser
|
|
722
727
|
- IconEraserSimple
|
|
728
|
+
- IconEyedropper
|
|
729
|
+
- IconEyedropper2
|
|
723
730
|
- IconFeather
|
|
724
731
|
- IconFeather2
|
|
725
732
|
- IconGlass
|
package/filtered-icons.json
CHANGED
|
@@ -6706,10 +6706,24 @@
|
|
|
6706
6706
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6707
6707
|
"componentName": "IconChevronTopSmall"
|
|
6708
6708
|
},
|
|
6709
|
+
{
|
|
6710
|
+
"category": "Arrows",
|
|
6711
|
+
"svg": "<path d=\"M17 10H7L12 16L17 10Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6712
|
+
"iconName": "chevron-triangle-down-medium, dropdown, caret",
|
|
6713
|
+
"variant": {
|
|
6714
|
+
"join": "round",
|
|
6715
|
+
"filled": "off",
|
|
6716
|
+
"radius": "0",
|
|
6717
|
+
"stroke": "2"
|
|
6718
|
+
},
|
|
6719
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6720
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6721
|
+
"componentName": "IconChevronTriangleDownMedium"
|
|
6722
|
+
},
|
|
6709
6723
|
{
|
|
6710
6724
|
"category": "Arrows",
|
|
6711
6725
|
"svg": "<path d=\"M15 11H9L12 15L15 11Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6712
|
-
"iconName": "chevron-triangle-down-small, dropdown",
|
|
6726
|
+
"iconName": "chevron-triangle-down-small, dropdown, caret",
|
|
6713
6727
|
"variant": {
|
|
6714
6728
|
"join": "round",
|
|
6715
6729
|
"filled": "off",
|
|
@@ -6720,10 +6734,52 @@
|
|
|
6720
6734
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6721
6735
|
"componentName": "IconChevronTriangleDownSmall"
|
|
6722
6736
|
},
|
|
6737
|
+
{
|
|
6738
|
+
"category": "Arrows",
|
|
6739
|
+
"svg": "<path d=\"M14 7V17L8 12L14 7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6740
|
+
"iconName": "chevron-triangle-left-medium, dropdown, caret",
|
|
6741
|
+
"variant": {
|
|
6742
|
+
"join": "round",
|
|
6743
|
+
"filled": "off",
|
|
6744
|
+
"radius": "0",
|
|
6745
|
+
"stroke": "2"
|
|
6746
|
+
},
|
|
6747
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6748
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6749
|
+
"componentName": "IconChevronTriangleLeftMedium"
|
|
6750
|
+
},
|
|
6751
|
+
{
|
|
6752
|
+
"category": "Arrows",
|
|
6753
|
+
"svg": "<path d=\"M10 7V17L16 12L10 7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6754
|
+
"iconName": "chevron-triangle-right-medium, dropdown, caret",
|
|
6755
|
+
"variant": {
|
|
6756
|
+
"join": "round",
|
|
6757
|
+
"filled": "off",
|
|
6758
|
+
"radius": "0",
|
|
6759
|
+
"stroke": "2"
|
|
6760
|
+
},
|
|
6761
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6762
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6763
|
+
"componentName": "IconChevronTriangleRightMedium"
|
|
6764
|
+
},
|
|
6765
|
+
{
|
|
6766
|
+
"category": "Arrows",
|
|
6767
|
+
"svg": "<path d=\"M17 14H7L12 8L17 14Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6768
|
+
"iconName": "chevron-triangle-up-medium, dropdown, caret",
|
|
6769
|
+
"variant": {
|
|
6770
|
+
"join": "round",
|
|
6771
|
+
"filled": "off",
|
|
6772
|
+
"radius": "0",
|
|
6773
|
+
"stroke": "2"
|
|
6774
|
+
},
|
|
6775
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6776
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
6777
|
+
"componentName": "IconChevronTriangleUpMedium"
|
|
6778
|
+
},
|
|
6723
6779
|
{
|
|
6724
6780
|
"category": "Arrows",
|
|
6725
6781
|
"svg": "<path d=\"M15 13H9L12 9L15 13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6726
|
-
"iconName": "chevron-triangle-up-small, dropdown",
|
|
6782
|
+
"iconName": "chevron-triangle-up-small, dropdown, caret",
|
|
6727
6783
|
"variant": {
|
|
6728
6784
|
"join": "round",
|
|
6729
6785
|
"filled": "off",
|
|
@@ -7980,20 +8036,6 @@
|
|
|
7980
8036
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
7981
8037
|
"componentName": "IconColorPalette2"
|
|
7982
8038
|
},
|
|
7983
|
-
{
|
|
7984
|
-
"category": "Edit",
|
|
7985
|
-
"svg": "<path d=\"M17 3L4 16V20H8L21 7L17 3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 7L17 14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7986
|
-
"iconName": "color-picker, color",
|
|
7987
|
-
"variant": {
|
|
7988
|
-
"join": "round",
|
|
7989
|
-
"filled": "off",
|
|
7990
|
-
"radius": "0",
|
|
7991
|
-
"stroke": "2"
|
|
7992
|
-
},
|
|
7993
|
-
"createdAt": "2025-02-15T21:11:33.928598+00:00",
|
|
7994
|
-
"packageName": "round-outlined-radius-0-stroke-2",
|
|
7995
|
-
"componentName": "IconColorPicker"
|
|
7996
|
-
},
|
|
7997
8039
|
{
|
|
7998
8040
|
"category": "Edit",
|
|
7999
8041
|
"svg": "<path d=\"M7 4H20V10H7V7V4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 7H4V13H13V15.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 21V18C15 16.8954 14.1046 16 13 16C11.8954 16 11 16.8954 11 18V21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -10738,6 +10780,34 @@
|
|
|
10738
10780
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
10739
10781
|
"componentName": "IconEyeClosed"
|
|
10740
10782
|
},
|
|
10783
|
+
{
|
|
10784
|
+
"category": "Edit",
|
|
10785
|
+
"svg": "<path d=\"M11.0008 9L5.50078 14.5L4.80078 17.2L4.30078 17.7C3.7485 18.2523 3.7485 19.1477 4.30078 19.7C4.85307 20.2523 5.7485 20.2523 6.30078 19.7L6.80078 19.2L9.50078 18.5L15.0008 13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 13.5L10.5 7.50024L12 6.00024H14L15.621 4.61073C16.6812 3.70185 18.2625 3.76254 19.25 4.75004C20.2375 5.7375 20.2982 7.31874 19.3894 8.37903L18 10V12L16.5 13.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10786
|
+
"iconName": "eyedropper, color-picker, pipette, suction-tube, labor",
|
|
10787
|
+
"variant": {
|
|
10788
|
+
"join": "round",
|
|
10789
|
+
"filled": "off",
|
|
10790
|
+
"radius": "0",
|
|
10791
|
+
"stroke": "2"
|
|
10792
|
+
},
|
|
10793
|
+
"createdAt": "2026-05-21T12:02:30.83156+00:00",
|
|
10794
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
10795
|
+
"componentName": "IconEyedropper"
|
|
10796
|
+
},
|
|
10797
|
+
{
|
|
10798
|
+
"category": "Edit",
|
|
10799
|
+
"svg": "<path d=\"M17 3L4 16V20H8L21 7L17 3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 7L17 14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10800
|
+
"iconName": "eyedropper-2, color-picker, pipette, suction-tube, labor",
|
|
10801
|
+
"variant": {
|
|
10802
|
+
"join": "round",
|
|
10803
|
+
"filled": "off",
|
|
10804
|
+
"radius": "0",
|
|
10805
|
+
"stroke": "2"
|
|
10806
|
+
},
|
|
10807
|
+
"createdAt": "2025-02-15T21:11:33.928598+00:00",
|
|
10808
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
10809
|
+
"componentName": "IconEyedropper2"
|
|
10810
|
+
},
|
|
10741
10811
|
{
|
|
10742
10812
|
"category": "Accessibility",
|
|
10743
10813
|
"svg": "<path d=\"M2 12.0001C6.82745 2.66672 17.1725 2.66661 22 11.9999C17.1725 21.3333 6.82745 21.3334 2 12.0001Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -25412,7 +25482,7 @@
|
|
|
25412
25482
|
},
|
|
25413
25483
|
{
|
|
25414
25484
|
"category": "Social Media & Brands",
|
|
25415
|
-
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.
|
|
25485
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8717 8.05419C15.062 8.03983 15.2997 8.04152 15.5084 8.22313C15.6482 8.34501 15.753 8.53198 15.7633 8.73192V8.80809C15.7585 8.88373 15.7399 8.95835 15.7086 9.02782C15.6771 9.09746 15.6201 9.18112 15.5621 9.26024C15.5014 9.34305 15.4285 9.43493 15.3551 9.52489C15.1984 9.71675 15.0608 9.8755 14.9752 9.98192C14.2735 10.8472 13.6074 11.742 12.9801 12.6626L12.9791 12.6636C12.7869 12.9437 12.6017 13.2349 12.4137 13.5259L12.4127 13.5249C12.3104 13.69 12.1678 13.9598 11.9859 14.1528C11.8909 14.2536 11.7747 14.3469 11.6324 14.4009C11.4863 14.4562 11.3236 14.4656 11.149 14.4165C10.9501 14.3604 10.7608 14.2149 10.608 14.0776L10.1959 13.6733L9.25155 12.7641C9.04187 12.5655 8.74018 12.3123 8.55819 12.0249C8.4772 11.8969 8.45015 11.7304 8.46054 11.5845C8.47081 11.4403 8.52167 11.269 8.64804 11.1538C8.81658 11.0003 8.99681 10.9197 9.18417 10.9097C9.36786 10.8999 9.53568 10.9592 9.68026 11.0405C9.82417 11.1215 9.95688 11.2311 10.0738 11.3374C10.1326 11.3908 10.1895 11.4453 10.2428 11.4966C10.2968 11.5486 10.3472 11.5971 10.3951 11.6411L11.1949 12.3755C11.3972 12.0707 11.6397 11.7426 11.8463 11.4585C12.4485 10.6285 13.0835 9.82204 13.7486 9.04149L14.109 8.62059C14.2373 8.47565 14.3723 8.33191 14.5084 8.21044C14.6178 8.11293 14.75 8.07705 14.8463 8.05712L14.858 8.05516L14.8717 8.05419Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.86 2.25048C16.8765 2.25047 19.0797 2.1286 20.1578 4.16844C20.5556 4.92174 20.5767 5.91064 20.6187 7.88719L20.69 11.2456C20.712 12.2778 20.7227 12.7945 20.7115 13.31C20.7016 13.7682 20.6783 14.2263 20.6422 14.6831C20.6015 15.1972 20.5393 15.7101 20.4137 16.7349L20.4019 16.8315C20.1886 18.5722 20.0816 19.443 19.6734 20.0991C19.3137 20.6771 18.7929 21.1376 18.1754 21.4243C17.4744 21.7497 16.5973 21.7505 14.8433 21.7505H9.1539C7.39997 21.7505 6.52281 21.7497 5.82186 21.4243C5.20443 21.1376 4.68348 20.6771 4.32382 20.0991C3.9157 19.443 3.80867 18.5722 3.5953 16.8315L3.58358 16.7349C3.45797 15.7101 3.39577 15.1972 3.35507 14.6831C3.31891 14.2263 3.29568 13.7682 3.28573 13.31C3.27455 12.7945 3.28525 12.2778 3.30722 11.2456L3.3785 7.88719C3.42056 5.91064 3.4416 4.92174 3.83944 4.16844C4.91749 2.12857 7.12072 2.25047 9.13729 2.25048H14.86ZM8.3912 5.7495C7.28984 5.7495 6.7388 5.74954 6.31503 5.96239C5.94225 6.14978 5.63718 6.44957 5.44296 6.81883C5.22226 7.23868 5.212 7.78981 5.19198 8.8911L5.09921 13.9995C5.0992 14.2316 5.09899 14.3481 5.10897 14.4477C5.19829 15.337 5.86699 16.0587 6.74667 16.2163C6.84531 16.2339 6.96141 16.2434 7.19296 16.2612L7.83261 16.31C8.2482 16.3421 8.45639 16.3587 8.62069 16.435C8.85809 16.5456 9.0433 16.7455 9.13534 16.9907C9.19896 17.1605 9.19882 17.3695 9.19882 17.7866V17.8999C9.19882 18.4596 9.19933 18.7398 9.30819 18.9536C9.404 19.1415 9.5568 19.2943 9.74472 19.3901C9.95857 19.4991 10.2387 19.4995 10.7984 19.4995H13.1988C13.7588 19.4995 14.0386 19.4991 14.2525 19.3901C14.4407 19.2942 14.5942 19.1417 14.69 18.9536C14.7989 18.7398 14.7984 18.4595 14.7984 17.8999V17.8452C14.7984 17.3399 14.799 17.0866 14.8932 16.8852C14.9761 16.7081 15.1092 16.5588 15.276 16.4565C15.4654 16.3404 15.7172 16.3122 16.2193 16.2554L16.9488 16.1724C16.972 16.1715 16.9838 16.1709 16.9937 16.1704C18.0526 16.1202 18.8885 15.2529 18.899 14.1929V13.9995L18.8082 8.89305C18.7886 7.79122 18.7788 7.23986 18.5582 6.81981C18.364 6.45029 18.0591 6.14992 17.6861 5.96239C17.2622 5.74942 16.7108 5.7495 15.609 5.7495H8.3912Z\" fill=\"currentColor\"/><path opacity=\"0.4\" d=\"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z\" fill=\"currentColor\"/>",
|
|
25416
25486
|
"iconName": "things",
|
|
25417
25487
|
"variant": {
|
|
25418
25488
|
"join": "round",
|
|
@@ -27118,6 +27188,34 @@
|
|
|
27118
27188
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
27119
27189
|
"componentName": "IconVoiceMode"
|
|
27120
27190
|
},
|
|
27191
|
+
{
|
|
27192
|
+
"category": "Accessibility",
|
|
27193
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M7.5 13.5V10.5C7.5 9.94772 7.94772 9.5 8.5 9.5H9C9.31476 9.5 9.61115 9.35181 9.8 9.1L10.7 7.9C10.8889 7.64819 11.1852 7.5 11.5 7.5C12.0523 7.5 12.5 7.94772 12.5 8.5V15.5C12.5 16.0523 12.0523 16.5 11.5 16.5C11.1852 16.5 10.8889 16.3518 10.7 16.1L9.8 14.9C9.61115 14.6482 9.31476 14.5 9 14.5H8.5C7.94772 14.5 7.5 14.0523 7.5 13.5Z\" fill=\"currentColor\"/><path d=\"M14.5 14C16 13 16 11 14.5 10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
27194
|
+
"iconName": "voiceover, sound",
|
|
27195
|
+
"variant": {
|
|
27196
|
+
"join": "round",
|
|
27197
|
+
"filled": "off",
|
|
27198
|
+
"radius": "0",
|
|
27199
|
+
"stroke": "2"
|
|
27200
|
+
},
|
|
27201
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
27202
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
27203
|
+
"componentName": "IconVoiceover"
|
|
27204
|
+
},
|
|
27205
|
+
{
|
|
27206
|
+
"category": "Accessibility",
|
|
27207
|
+
"svg": "<path d=\"M15 13.9334C17.6888 13.5744 20.2815 11.7633 22 8.49996C18.3224 1.51668 10.642 1.18341 6.58228 7.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 8.5C16.25 9.74264 15.2426 10.75 14 10.75C12.7574 10.75 11.75 9.74264 11.75 8.5C11.75 7.25736 12.7574 6.25 14 6.25C15.2426 6.25 16.25 7.25736 16.25 8.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 18.5C12.3333 17.25 12.3333 14.75 11 13.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 18.5V13.5H4L5.5 11H8V21H5.5L4 18.5H2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
27208
|
+
"iconName": "voiceover-2, sound, eye, accessibility",
|
|
27209
|
+
"variant": {
|
|
27210
|
+
"join": "round",
|
|
27211
|
+
"filled": "off",
|
|
27212
|
+
"radius": "0",
|
|
27213
|
+
"stroke": "2"
|
|
27214
|
+
},
|
|
27215
|
+
"createdAt": "2026-05-21T12:02:30.83156+00:00",
|
|
27216
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
27217
|
+
"componentName": "IconVoiceover2"
|
|
27218
|
+
},
|
|
27121
27219
|
{
|
|
27122
27220
|
"category": "Sound & Music",
|
|
27123
27221
|
"svg": "<circle cx=\"16.5\" cy=\"15.5\" r=\"4.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.5\" cy=\"15.5\" r=\"2.5\" fill=\"currentColor\"/><path d=\"M3.00391 9V11M6.50391 4V16M10.0039 7V10M13.5039 5V7.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -478,7 +478,11 @@ export type CentralIconName =
|
|
|
478
478
|
| "IconChevronTop"
|
|
479
479
|
| "IconChevronTopMedium"
|
|
480
480
|
| "IconChevronTopSmall"
|
|
481
|
+
| "IconChevronTriangleDownMedium"
|
|
481
482
|
| "IconChevronTriangleDownSmall"
|
|
483
|
+
| "IconChevronTriangleLeftMedium"
|
|
484
|
+
| "IconChevronTriangleRightMedium"
|
|
485
|
+
| "IconChevronTriangleUpMedium"
|
|
482
486
|
| "IconChevronTriangleUpSmall"
|
|
483
487
|
| "IconChip"
|
|
484
488
|
| "IconChipSimple"
|
|
@@ -569,7 +573,6 @@ export type CentralIconName =
|
|
|
569
573
|
| "IconCollaborationPointerRight"
|
|
570
574
|
| "IconColorPalette"
|
|
571
575
|
| "IconColorPalette2"
|
|
572
|
-
| "IconColorPicker"
|
|
573
576
|
| "IconColorRoll"
|
|
574
577
|
| "IconColors"
|
|
575
578
|
| "IconColorSwatch"
|
|
@@ -766,6 +769,8 @@ export type CentralIconName =
|
|
|
766
769
|
| "IconExposure1"
|
|
767
770
|
| "IconExposure2"
|
|
768
771
|
| "IconEyeClosed"
|
|
772
|
+
| "IconEyedropper"
|
|
773
|
+
| "IconEyedropper2"
|
|
769
774
|
| "IconEyeOpen"
|
|
770
775
|
| "IconEyeSlash"
|
|
771
776
|
| "IconEyeSlash2"
|
|
@@ -1936,6 +1941,8 @@ export type CentralIconName =
|
|
|
1936
1941
|
| "IconVoiceMemo"
|
|
1937
1942
|
| "IconVoiceMid"
|
|
1938
1943
|
| "IconVoiceMode"
|
|
1944
|
+
| "IconVoiceover"
|
|
1945
|
+
| "IconVoiceover2"
|
|
1939
1946
|
| "IconVoiceRecord"
|
|
1940
1947
|
| "IconVoiceSettings"
|
|
1941
1948
|
| "IconVoiceShare"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.243",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 2008,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
"Accessibility": {
|
|
110
|
-
"count":
|
|
110
|
+
"count": 13,
|
|
111
111
|
"icons": [
|
|
112
112
|
"IconCircleHalfFill",
|
|
113
113
|
"IconCirclePerson",
|
|
@@ -119,11 +119,13 @@
|
|
|
119
119
|
"IconImageAltText",
|
|
120
120
|
"IconReduceMotion",
|
|
121
121
|
"IconSquareLinesBottom",
|
|
122
|
-
"IconVoiceControl"
|
|
122
|
+
"IconVoiceControl",
|
|
123
|
+
"IconVoiceover",
|
|
124
|
+
"IconVoiceover2"
|
|
123
125
|
]
|
|
124
126
|
},
|
|
125
127
|
"Arrows": {
|
|
126
|
-
"count":
|
|
128
|
+
"count": 140,
|
|
127
129
|
"icons": [
|
|
128
130
|
"IconArrow",
|
|
129
131
|
"IconArrowBottomTop",
|
|
@@ -220,7 +222,11 @@
|
|
|
220
222
|
"IconChevronTop",
|
|
221
223
|
"IconChevronTopMedium",
|
|
222
224
|
"IconChevronTopSmall",
|
|
225
|
+
"IconChevronTriangleDownMedium",
|
|
223
226
|
"IconChevronTriangleDownSmall",
|
|
227
|
+
"IconChevronTriangleLeftMedium",
|
|
228
|
+
"IconChevronTriangleRightMedium",
|
|
229
|
+
"IconChevronTriangleUpMedium",
|
|
224
230
|
"IconChevronTriangleUpSmall",
|
|
225
231
|
"IconCollaborationPointerLeft",
|
|
226
232
|
"IconCollaborationPointerRight",
|
|
@@ -571,7 +577,7 @@
|
|
|
571
577
|
]
|
|
572
578
|
},
|
|
573
579
|
"Edit": {
|
|
574
|
-
"count":
|
|
580
|
+
"count": 91,
|
|
575
581
|
"icons": [
|
|
576
582
|
"Icon3d",
|
|
577
583
|
"IconAddKeyframe",
|
|
@@ -595,7 +601,6 @@
|
|
|
595
601
|
"IconCircle",
|
|
596
602
|
"IconColorPalette",
|
|
597
603
|
"IconColorPalette2",
|
|
598
|
-
"IconColorPicker",
|
|
599
604
|
"IconColorRoll",
|
|
600
605
|
"IconColors",
|
|
601
606
|
"IconColorSwatch",
|
|
@@ -609,6 +614,8 @@
|
|
|
609
614
|
"IconEditSmall2",
|
|
610
615
|
"IconEraser",
|
|
611
616
|
"IconEraserSimple",
|
|
617
|
+
"IconEyedropper",
|
|
618
|
+
"IconEyedropper2",
|
|
612
619
|
"IconFeather",
|
|
613
620
|
"IconFeather2",
|
|
614
621
|
"IconGlass",
|
|
@@ -2681,8 +2688,12 @@
|
|
|
2681
2688
|
"IconChevronTop": "chevron-top",
|
|
2682
2689
|
"IconChevronTopMedium": "chevron-top-medium",
|
|
2683
2690
|
"IconChevronTopSmall": "chevron-top-small",
|
|
2684
|
-
"
|
|
2685
|
-
"
|
|
2691
|
+
"IconChevronTriangleDownMedium": "chevron-triangle-down-medium, dropdown, caret",
|
|
2692
|
+
"IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown, caret",
|
|
2693
|
+
"IconChevronTriangleLeftMedium": "chevron-triangle-left-medium, dropdown, caret",
|
|
2694
|
+
"IconChevronTriangleRightMedium": "chevron-triangle-right-medium, dropdown, caret",
|
|
2695
|
+
"IconChevronTriangleUpMedium": "chevron-triangle-up-medium, dropdown, caret",
|
|
2696
|
+
"IconChevronTriangleUpSmall": "chevron-triangle-up-small, dropdown, caret",
|
|
2686
2697
|
"IconChip": "chip, esim",
|
|
2687
2698
|
"IconChipSimple": "chip-simple, processor",
|
|
2688
2699
|
"IconChrome": "chrome",
|
|
@@ -2772,7 +2783,6 @@
|
|
|
2772
2783
|
"IconCollaborationPointerRight": "collaboration-pointer-right, cursor, agents",
|
|
2773
2784
|
"IconColorPalette": "color-palette, colours",
|
|
2774
2785
|
"IconColorPalette2": "color-palette-2, design, coloring",
|
|
2775
|
-
"IconColorPicker": "color-picker, color",
|
|
2776
2786
|
"IconColorRoll": "color-roll, paint-roller",
|
|
2777
2787
|
"IconColors": "colors, rgb, adjustments",
|
|
2778
2788
|
"IconColorSwatch": "color-swatch, palette, colours",
|
|
@@ -2969,6 +2979,8 @@
|
|
|
2969
2979
|
"IconExposure1": "exposure-1, plus-minus",
|
|
2970
2980
|
"IconExposure2": "exposure-2, macro, flower",
|
|
2971
2981
|
"IconEyeClosed": "eye-closed, see, hidden",
|
|
2982
|
+
"IconEyedropper": "eyedropper, color-picker, pipette, suction-tube, labor",
|
|
2983
|
+
"IconEyedropper2": "eyedropper-2, color-picker, pipette, suction-tube, labor",
|
|
2972
2984
|
"IconEyeOpen": "eye-open, show, see, reveal, look, visible",
|
|
2973
2985
|
"IconEyeSlash": "eye-slash, hide, eye off, see, look, not visible",
|
|
2974
2986
|
"IconEyeSlash2": "eye-slash-2, accessibility eye, a11y",
|
|
@@ -4139,6 +4151,8 @@
|
|
|
4139
4151
|
"IconVoiceMemo": "voice-memo, voice-control",
|
|
4140
4152
|
"IconVoiceMid": "voice-mid, wave",
|
|
4141
4153
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
4154
|
+
"IconVoiceover": "voiceover, sound",
|
|
4155
|
+
"IconVoiceover2": "voiceover-2, sound, eye, accessibility",
|
|
4142
4156
|
"IconVoiceRecord": "voice-record",
|
|
4143
4157
|
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
4144
4158
|
"IconVoiceShare": "voice-share",
|
package/index.d.ts
CHANGED
|
@@ -477,7 +477,11 @@ export { IconChevronRightSmall, default as IconChevronRightSmallDefault, } from
|
|
|
477
477
|
export { IconChevronTop, default as IconChevronTopDefault, } from "./IconChevronTop";
|
|
478
478
|
export { IconChevronTopMedium, default as IconChevronTopMediumDefault, } from "./IconChevronTopMedium";
|
|
479
479
|
export { IconChevronTopSmall, default as IconChevronTopSmallDefault, } from "./IconChevronTopSmall";
|
|
480
|
+
export { IconChevronTriangleDownMedium, default as IconChevronTriangleDownMediumDefault, } from "./IconChevronTriangleDownMedium";
|
|
480
481
|
export { IconChevronTriangleDownSmall, default as IconChevronTriangleDownSmallDefault, } from "./IconChevronTriangleDownSmall";
|
|
482
|
+
export { IconChevronTriangleLeftMedium, default as IconChevronTriangleLeftMediumDefault, } from "./IconChevronTriangleLeftMedium";
|
|
483
|
+
export { IconChevronTriangleRightMedium, default as IconChevronTriangleRightMediumDefault, } from "./IconChevronTriangleRightMedium";
|
|
484
|
+
export { IconChevronTriangleUpMedium, default as IconChevronTriangleUpMediumDefault, } from "./IconChevronTriangleUpMedium";
|
|
481
485
|
export { IconChevronTriangleUpSmall, default as IconChevronTriangleUpSmallDefault, } from "./IconChevronTriangleUpSmall";
|
|
482
486
|
export { IconChip, default as IconChipDefault } from "./IconChip";
|
|
483
487
|
export { IconChipSimple, default as IconChipSimpleDefault, } from "./IconChipSimple";
|
|
@@ -568,7 +572,6 @@ export { IconCollaborationPointerLeft, default as IconCollaborationPointerLeftDe
|
|
|
568
572
|
export { IconCollaborationPointerRight, default as IconCollaborationPointerRightDefault, } from "./IconCollaborationPointerRight";
|
|
569
573
|
export { IconColorPalette, default as IconColorPaletteDefault, } from "./IconColorPalette";
|
|
570
574
|
export { IconColorPalette2, default as IconColorPalette2Default, } from "./IconColorPalette2";
|
|
571
|
-
export { IconColorPicker, default as IconColorPickerDefault, } from "./IconColorPicker";
|
|
572
575
|
export { IconColorRoll, default as IconColorRollDefault, } from "./IconColorRoll";
|
|
573
576
|
export { IconColorSwatch, default as IconColorSwatchDefault, } from "./IconColorSwatch";
|
|
574
577
|
export { IconColors, default as IconColorsDefault } from "./IconColors";
|
|
@@ -769,6 +772,8 @@ export { IconEyeOpen, default as IconEyeOpenDefault } from "./IconEyeOpen";
|
|
|
769
772
|
export { IconEyeSlash, default as IconEyeSlashDefault } from "./IconEyeSlash";
|
|
770
773
|
export { IconEyeSlash2, default as IconEyeSlash2Default, } from "./IconEyeSlash2";
|
|
771
774
|
export { IconEyeSparkle, default as IconEyeSparkleDefault, } from "./IconEyeSparkle";
|
|
775
|
+
export { IconEyedropper, default as IconEyedropperDefault, } from "./IconEyedropper";
|
|
776
|
+
export { IconEyedropper2, default as IconEyedropper2Default, } from "./IconEyedropper2";
|
|
772
777
|
export { IconFaceId, default as IconFaceIdDefault } from "./IconFaceId";
|
|
773
778
|
export { IconFaceIdFace, default as IconFaceIdFaceDefault, } from "./IconFaceIdFace";
|
|
774
779
|
export { IconFacebook, default as IconFacebookDefault } from "./IconFacebook";
|
|
@@ -1939,6 +1944,8 @@ export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoice
|
|
|
1939
1944
|
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1940
1945
|
export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
|
|
1941
1946
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1947
|
+
export { IconVoiceover, default as IconVoiceoverDefault, } from "./IconVoiceover";
|
|
1948
|
+
export { IconVoiceover2, default as IconVoiceover2Default, } from "./IconVoiceover2";
|
|
1942
1949
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1943
1950
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|
|
1944
1951
|
export { IconVolumeFull, default as IconVolumeFullDefault, } from "./IconVolumeFull";
|