@central-icons-react-native/round-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.
- 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/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/README.md +5 -0
- package/filtered-icons.json +72 -2
- package/icons/index.d.ts +5 -0
- package/icons-index.json +17 -7
- package/index.d.ts +5 -0
- 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 +8 -3
- package/tsx-icons.json +37 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(C=B(o,n))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(t({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleDownMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M16.9999 9C17.3878 9.00005 17.7406 9.22483 17.9051 9.57617C18.0696 9.92749 18.0167 10.3426 17.7684 10.6406L12.7684 16.6406C12.5785 16.8685 12.2966 17 11.9999 17C11.7032 17 11.4213 16.8685 11.2313 16.6406L6.23131 10.6406C5.98294 10.3426 5.9301 9.92753 6.09459 9.57617C6.25918 9.22482 6.61187 9 6.99987 9H16.9999Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleDownMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleDownMedium/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 IconChevronTriangleDownMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.9999 9C17.3878 9.00005 17.7406 9.22483 17.9051 9.57617C18.0696 9.92749 18.0167 10.3426 17.7684 10.6406L12.7684 16.6406C12.5785 16.8685 12.2966 17 11.9999 17C11.7032 17 11.4213 16.8685 11.2313 16.6406L6.23131 10.6406C5.98294 10.3426 5.9301 9.92753 6.09459 9.57617C6.25918 9.22482 6.61187 9 6.99987 9H16.9999Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleDownMedium;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0TACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleDownMedium_exports","__export","IconChevronTriangleDownMedium","IconChevronTriangleDownMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleDownMedium","props","React","CentralIconBase","IconChevronTriangleDownMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...t})=>p.createElement(C,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>n.createElement(e,{...o},n.createElement(a,{d:"M16.9999 9C17.3878 9.00005 17.7406 9.22483 17.9051 9.57617C18.0696 9.92749 18.0167 10.3426 17.7684 10.6406L12.7684 16.6406C12.5785 16.8685 12.2966 17 11.9999 17C11.7032 17 11.4213 16.8685 11.2313 16.6406L6.23131 10.6406C5.98294 10.3426 5.9301 9.92753 6.09459 9.57617C6.25918 9.22482 6.61187 9 6.99987 9H16.9999Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleDownMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleDownMedium/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 IconChevronTriangleDownMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.9999 9C17.3878 9.00005 17.7406 9.22483 17.9051 9.57617C18.0696 9.92749 18.0167 10.3426 17.7684 10.6406L12.7684 16.6406C12.5785 16.8685 12.2966 17 11.9999 17C11.7032 17 11.4213 16.8685 11.2313 16.6406L6.23131 10.6406C5.98294 10.3426 5.9301 9.92753 6.09459 9.57617C6.25918 9.22482 6.61187 9 6.99987 9H16.9999Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleDownMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0TACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleDownMedium","props","React","CentralIconBase","IconChevronTriangleDownMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleLeftMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(c.Path,{d:"M15 6.99983C14.9999 6.61187 14.7752 6.25912 14.4238 6.09456C14.0725 5.9301 13.6574 5.98297 13.3594 6.23128L7.35938 11.2313C7.13148 11.4212 7.00004 11.7031 7 11.9998C7 12.2965 7.13148 12.5784 7.35938 12.7684L13.3594 17.7684C13.6574 18.0168 14.0725 18.0696 14.4238 17.9051C14.7752 17.7405 15 17.3878 15 16.9998V6.99983Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleLeftMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleLeftMedium/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 IconChevronTriangleLeftMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 6.99983C14.9999 6.61187 14.7752 6.25912 14.4238 6.09456C14.0725 5.9301 13.6574 5.98297 13.3594 6.23128L7.35938 11.2313C7.13148 11.4212 7.00004 11.7031 7 11.9998C7 12.2965 7.13148 12.5784 7.35938 12.7684L13.3594 17.7684C13.6574 18.0168 14.0725 18.0696 14.4238 17.9051C14.7752 17.7405 15 17.3878 15 16.9998V6.99983Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleLeftMedium;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleLeftMedium_exports","__export","IconChevronTriangleLeftMedium","IconChevronTriangleLeftMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleLeftMedium","props","React","CentralIconBase","IconChevronTriangleLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M15 6.99983C14.9999 6.61187 14.7752 6.25912 14.4238 6.09456C14.0725 5.9301 13.6574 5.98297 13.3594 6.23128L7.35938 11.2313C7.13148 11.4212 7.00004 11.7031 7 11.9998C7 12.2965 7.13148 12.5784 7.35938 12.7684L13.3594 17.7684C13.6574 18.0168 14.0725 18.0696 14.4238 17.9051C14.7752 17.7405 15 17.3878 15 16.9998V6.99983Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleLeftMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleLeftMedium/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 IconChevronTriangleLeftMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 6.99983C14.9999 6.61187 14.7752 6.25912 14.4238 6.09456C14.0725 5.9301 13.6574 5.98297 13.3594 6.23128L7.35938 11.2313C7.13148 11.4212 7.00004 11.7031 7 11.9998C7 12.2965 7.13148 12.5784 7.35938 12.7684L13.3594 17.7684C13.6574 18.0168 14.0725 18.0696 14.4238 17.9051C14.7752 17.7405 15 17.3878 15 16.9998V6.99983Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleLeftMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gUACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleLeftMedium","props","React","CentralIconBase","IconChevronTriangleLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=u(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?g(I(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleRightMedium:()=>i,default:()=>v});module.exports=h(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M9.57617 6.09459C9.92753 5.9301 10.3426 5.98294 10.6406 6.23131L16.6406 11.2313C16.8685 11.4213 17 11.7032 17 11.9999C17 12.2966 16.8685 12.5785 16.6406 12.7684L10.6406 17.7684C10.3426 18.0167 9.92749 18.0696 9.57617 17.9051C9.22483 17.7406 9.00005 17.3878 9 16.9999V6.99987C9 6.61187 9.22482 6.25918 9.57617 6.09459Z",fill:"currentColor"})),v=i;0&&(module.exports={IconChevronTriangleRightMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleRightMedium/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 IconChevronTriangleRightMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.57617 6.09459C9.92753 5.9301 10.3426 5.98294 10.6406 6.23131L16.6406 11.2313C16.8685 11.4213 17 11.7032 17 11.9999C17 12.2966 16.8685 12.5785 16.6406 12.7684L10.6406 17.7684C10.3426 18.0167 9.92749 18.0696 9.57617 17.9051C9.22483 17.7406 9.00005 17.3878 9 16.9999V6.99987C9 6.61187 9.22482 6.25918 9.57617 6.09459Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleRightMedium;\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,oCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleRightMedium_exports","__export","IconChevronTriangleRightMedium","IconChevronTriangleRightMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleRightMedium","props","React","CentralIconBase","IconChevronTriangleRightMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M9.57617 6.09459C9.92753 5.9301 10.3426 5.98294 10.6406 6.23131L16.6406 11.2313C16.8685 11.4213 17 11.7032 17 11.9999C17 12.2966 16.8685 12.5785 16.6406 12.7684L10.6406 17.7684C10.3426 18.0167 9.92749 18.0696 9.57617 17.9051C9.22483 17.7406 9.00005 17.3878 9 16.9999V6.99987C9 6.61187 9.22482 6.25918 9.57617 6.09459Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleRightMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleRightMedium/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 IconChevronTriangleRightMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.57617 6.09459C9.92753 5.9301 10.3426 5.98294 10.6406 6.23131L16.6406 11.2313C16.8685 11.4213 17 11.7032 17 11.9999C17 12.2966 16.8685 12.5785 16.6406 12.7684L10.6406 17.7684C10.3426 18.0167 9.92749 18.0696 9.57617 17.9051C9.22483 17.7406 9.00005 17.3878 9 16.9999V6.99987C9 6.61187 9.22482 6.25918 9.57617 6.09459Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleRightMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gUACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleRightMedium","props","React","CentralIconBase","IconChevronTriangleRightMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleUpMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M11.9999 7C12.2966 7.00004 12.5785 7.13148 12.7684 7.35938L17.7684 13.3594C18.0167 13.6574 18.0696 14.0725 17.9051 14.4238C17.7406 14.7752 17.3878 14.9999 16.9999 15H6.99987C6.61187 15 6.25918 14.7752 6.09459 14.4238C5.9301 14.0725 5.98294 13.6574 6.23131 13.3594L11.2313 7.35938L11.3075 7.2793C11.4927 7.10139 11.7402 7 11.9999 7Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleUpMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleUpMedium/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 IconChevronTriangleUpMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9999 7C12.2966 7.00004 12.5785 7.13148 12.7684 7.35938L17.7684 13.3594C18.0167 13.6574 18.0696 14.0725 17.9051 14.4238C17.7406 14.7752 17.3878 14.9999 16.9999 15H6.99987C6.61187 15 6.25918 14.7752 6.09459 14.4238C5.9301 14.0725 5.98294 13.6574 6.23131 13.3594L11.2313 7.35938L11.3075 7.2793C11.4927 7.10139 11.7402 7 11.9999 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleUpMedium;\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,iCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8UACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleUpMedium_exports","__export","IconChevronTriangleUpMedium","IconChevronTriangleUpMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M11.9999 7C12.2966 7.00004 12.5785 7.13148 12.7684 7.35938L17.7684 13.3594C18.0167 13.6574 18.0696 14.0725 17.9051 14.4238C17.7406 14.7752 17.3878 14.9999 16.9999 15H6.99987C6.61187 15 6.25918 14.7752 6.09459 14.4238C5.9301 14.0725 5.98294 13.6574 6.23131 13.3594L11.2313 7.35938L11.3075 7.2793C11.4927 7.10139 11.7402 7 11.9999 7Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleUpMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleUpMedium/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 IconChevronTriangleUpMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9999 7C12.2966 7.00004 12.5785 7.13148 12.7684 7.35938L17.7684 13.3594C18.0167 13.6574 18.0696 14.0725 17.9051 14.4238C17.7406 14.7752 17.3878 14.9999 16.9999 15H6.99987C6.61187 15 6.25918 14.7752 6.09459 14.4238C5.9301 14.0725 5.98294 13.6574 6.23131 13.3594L11.2313 7.35938L11.3075 7.2793C11.4927 7.10139 11.7402 7 11.9999 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleUpMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8UACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of B(r))!d.call(o,C)&&C!==e&&t(o,C,{get:()=>r[C],enumerable:!(p=v(r,C))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var h={};x(h,{IconVoiceover:()=>i,default:()=>g});module.exports=P(h);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>n.default.createElement(s,{...o},n.default.createElement(f.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 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM15.0547 9.16797C14.5952 8.86162 13.9743 8.98578 13.668 9.44531C13.3616 9.90484 13.4858 10.5257 13.9453 10.832C14.8516 11.4362 14.8516 12.5638 13.9453 13.168C13.4858 13.4743 13.3616 14.0952 13.668 14.5547C13.9743 15.0142 14.5952 15.1384 15.0547 14.832C17.1484 13.4362 17.1484 10.5638 15.0547 9.16797Z",fill:"currentColor"})),g=i;0&&(module.exports={IconVoiceover});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover/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 IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n 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 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM15.0547 9.16797C14.5952 8.86162 13.9743 8.98578 13.668 9.44531C13.3616 9.90484 13.4858 10.5257 13.9453 10.832C14.8516 11.4362 14.8516 12.5638 13.9453 13.168C13.4858 13.4743 13.3616 14.0952 13.668 14.5547C13.9743 15.0142 14.5952 15.1384 15.0547 14.832C17.1484 13.4362 17.1484 10.5638 15.0547 9.16797Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+vBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconVoiceover_exports","__export","IconVoiceover","IconVoiceover_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>n.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>C.createElement(e,{...r},C.createElement(l,{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 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM15.0547 9.16797C14.5952 8.86162 13.9743 8.98578 13.668 9.44531C13.3616 9.90484 13.4858 10.5257 13.9453 10.832C14.8516 11.4362 14.8516 12.5638 13.9453 13.168C13.4858 13.4743 13.3616 14.0952 13.668 14.5547C13.9743 15.0142 14.5952 15.1384 15.0547 14.832C17.1484 13.4362 17.1484 10.5638 15.0547 9.16797Z",fill:"currentColor"})),d=a;export{a as IconVoiceover,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover/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 IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n 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 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM15.0547 9.16797C14.5952 8.86162 13.9743 8.98578 13.668 9.44531C13.3616 9.90484 13.4858 10.5257 13.9453 10.832C14.8516 11.4362 14.8516 12.5638 13.9453 13.168C13.4858 13.4743 13.3616 14.0952 13.668 14.5547C13.9743 15.0142 14.5952 15.1384 15.0547 14.832C17.1484 13.4362 17.1484 10.5638 15.0547 9.16797Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,+vBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
|
package/README.md
CHANGED
|
@@ -249,6 +249,7 @@ Below is a complete list of available icons:
|
|
|
249
249
|
- IconReduceMotion
|
|
250
250
|
- IconSquareLinesBottom
|
|
251
251
|
- IconVoiceControl
|
|
252
|
+
- IconVoiceover
|
|
252
253
|
|
|
253
254
|
### Arrows
|
|
254
255
|
|
|
@@ -347,7 +348,11 @@ Below is a complete list of available icons:
|
|
|
347
348
|
- IconChevronTop
|
|
348
349
|
- IconChevronTopMedium
|
|
349
350
|
- IconChevronTopSmall
|
|
351
|
+
- IconChevronTriangleDownMedium
|
|
350
352
|
- IconChevronTriangleDownSmall
|
|
353
|
+
- IconChevronTriangleLeftMedium
|
|
354
|
+
- IconChevronTriangleRightMedium
|
|
355
|
+
- IconChevronTriangleUpMedium
|
|
351
356
|
- IconChevronTriangleUpSmall
|
|
352
357
|
- IconCollaborationPointerLeft
|
|
353
358
|
- IconCollaborationPointerRight
|
package/filtered-icons.json
CHANGED
|
@@ -6706,10 +6706,24 @@
|
|
|
6706
6706
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
6707
6707
|
"componentName": "IconChevronTopSmall"
|
|
6708
6708
|
},
|
|
6709
|
+
{
|
|
6710
|
+
"category": "Arrows",
|
|
6711
|
+
"svg": "<path d=\"M16.9999 9C17.3878 9.00005 17.7406 9.22483 17.9051 9.57617C18.0696 9.92749 18.0167 10.3426 17.7684 10.6406L12.7684 16.6406C12.5785 16.8685 12.2966 17 11.9999 17C11.7032 17 11.4213 16.8685 11.2313 16.6406L6.23131 10.6406C5.98294 10.3426 5.9301 9.92753 6.09459 9.57617C6.25918 9.22482 6.61187 9 6.99987 9H16.9999Z\" fill=\"currentColor\"/>",
|
|
6712
|
+
"iconName": "chevron-triangle-down-medium, dropdown, caret",
|
|
6713
|
+
"variant": {
|
|
6714
|
+
"join": "round",
|
|
6715
|
+
"filled": "on",
|
|
6716
|
+
"radius": "0",
|
|
6717
|
+
"stroke": "2"
|
|
6718
|
+
},
|
|
6719
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6720
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
6721
|
+
"componentName": "IconChevronTriangleDownMedium"
|
|
6722
|
+
},
|
|
6709
6723
|
{
|
|
6710
6724
|
"category": "Arrows",
|
|
6711
6725
|
"svg": "<path d=\"M9.00001 10C8.62123 10 8.27497 10.214 8.10558 10.5528C7.93619 10.8916 7.97274 11.297 8.20001 11.6L11.2 15.6C11.3889 15.8518 11.6852 16 12 16C12.3148 16 12.6112 15.8518 12.8 15.6L15.8 11.6C16.0273 11.297 16.0638 10.8916 15.8944 10.5528C15.725 10.214 15.3788 10 15 10H9.00001Z\" fill=\"currentColor\"/>",
|
|
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": "on",
|
|
@@ -6720,10 +6734,52 @@
|
|
|
6720
6734
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
6721
6735
|
"componentName": "IconChevronTriangleDownSmall"
|
|
6722
6736
|
},
|
|
6737
|
+
{
|
|
6738
|
+
"category": "Arrows",
|
|
6739
|
+
"svg": "<path d=\"M15 6.99983C14.9999 6.61187 14.7752 6.25912 14.4238 6.09456C14.0725 5.9301 13.6574 5.98297 13.3594 6.23128L7.35938 11.2313C7.13148 11.4212 7.00004 11.7031 7 11.9998C7 12.2965 7.13148 12.5784 7.35938 12.7684L13.3594 17.7684C13.6574 18.0168 14.0725 18.0696 14.4238 17.9051C14.7752 17.7405 15 17.3878 15 16.9998V6.99983Z\" fill=\"currentColor\"/>",
|
|
6740
|
+
"iconName": "chevron-triangle-left-medium, dropdown, caret",
|
|
6741
|
+
"variant": {
|
|
6742
|
+
"join": "round",
|
|
6743
|
+
"filled": "on",
|
|
6744
|
+
"radius": "0",
|
|
6745
|
+
"stroke": "2"
|
|
6746
|
+
},
|
|
6747
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6748
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
6749
|
+
"componentName": "IconChevronTriangleLeftMedium"
|
|
6750
|
+
},
|
|
6751
|
+
{
|
|
6752
|
+
"category": "Arrows",
|
|
6753
|
+
"svg": "<path d=\"M9.57617 6.09459C9.92753 5.9301 10.3426 5.98294 10.6406 6.23131L16.6406 11.2313C16.8685 11.4213 17 11.7032 17 11.9999C17 12.2966 16.8685 12.5785 16.6406 12.7684L10.6406 17.7684C10.3426 18.0167 9.92749 18.0696 9.57617 17.9051C9.22483 17.7406 9.00005 17.3878 9 16.9999V6.99987C9 6.61187 9.22482 6.25918 9.57617 6.09459Z\" fill=\"currentColor\"/>",
|
|
6754
|
+
"iconName": "chevron-triangle-right-medium, dropdown, caret",
|
|
6755
|
+
"variant": {
|
|
6756
|
+
"join": "round",
|
|
6757
|
+
"filled": "on",
|
|
6758
|
+
"radius": "0",
|
|
6759
|
+
"stroke": "2"
|
|
6760
|
+
},
|
|
6761
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6762
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
6763
|
+
"componentName": "IconChevronTriangleRightMedium"
|
|
6764
|
+
},
|
|
6765
|
+
{
|
|
6766
|
+
"category": "Arrows",
|
|
6767
|
+
"svg": "<path d=\"M11.9999 7C12.2966 7.00004 12.5785 7.13148 12.7684 7.35938L17.7684 13.3594C18.0167 13.6574 18.0696 14.0725 17.9051 14.4238C17.7406 14.7752 17.3878 14.9999 16.9999 15H6.99987C6.61187 15 6.25918 14.7752 6.09459 14.4238C5.9301 14.0725 5.98294 13.6574 6.23131 13.3594L11.2313 7.35938L11.3075 7.2793C11.4927 7.10139 11.7402 7 11.9999 7Z\" fill=\"currentColor\"/>",
|
|
6768
|
+
"iconName": "chevron-triangle-up-medium, dropdown, caret",
|
|
6769
|
+
"variant": {
|
|
6770
|
+
"join": "round",
|
|
6771
|
+
"filled": "on",
|
|
6772
|
+
"radius": "0",
|
|
6773
|
+
"stroke": "2"
|
|
6774
|
+
},
|
|
6775
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6776
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
6777
|
+
"componentName": "IconChevronTriangleUpMedium"
|
|
6778
|
+
},
|
|
6723
6779
|
{
|
|
6724
6780
|
"category": "Arrows",
|
|
6725
6781
|
"svg": "<path d=\"M9.00001 14C8.62123 14 8.27497 13.786 8.10558 13.4472C7.93619 13.1084 7.97274 12.703 8.20001 12.4L11.2 8.4C11.3889 8.14819 11.6852 8 12 8C12.3148 8 12.6112 8.14819 12.8 8.4L15.8 12.4C16.0273 12.703 16.0638 13.1084 15.8944 13.4472C15.725 13.786 15.3788 14 15 14H9.00001Z\" fill=\"currentColor\"/>",
|
|
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": "on",
|
|
@@ -27118,6 +27174,20 @@
|
|
|
27118
27174
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
27119
27175
|
"componentName": "IconVoiceMode"
|
|
27120
27176
|
},
|
|
27177
|
+
{
|
|
27178
|
+
"category": "Accessibility",
|
|
27179
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"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 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM15.0547 9.16797C14.5952 8.86162 13.9743 8.98578 13.668 9.44531C13.3616 9.90484 13.4858 10.5257 13.9453 10.832C14.8516 11.4362 14.8516 12.5638 13.9453 13.168C13.4858 13.4743 13.3616 14.0952 13.668 14.5547C13.9743 15.0142 14.5952 15.1384 15.0547 14.832C17.1484 13.4362 17.1484 10.5638 15.0547 9.16797Z\" fill=\"currentColor\"/>",
|
|
27180
|
+
"iconName": "voiceover, sound",
|
|
27181
|
+
"variant": {
|
|
27182
|
+
"join": "round",
|
|
27183
|
+
"filled": "on",
|
|
27184
|
+
"radius": "0",
|
|
27185
|
+
"stroke": "2"
|
|
27186
|
+
},
|
|
27187
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
27188
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
27189
|
+
"componentName": "IconVoiceover"
|
|
27190
|
+
},
|
|
27121
27191
|
{
|
|
27122
27192
|
"category": "Sound & Music",
|
|
27123
27193
|
"svg": "<path d=\"M7.50391 4C7.50391 3.44772 7.05619 3 6.50391 3C5.95162 3 5.50391 3.44772 5.50391 4V16C5.50391 16.5523 5.95162 17 6.50391 17C7.05619 17 7.50391 16.5523 7.50391 16V4Z\" fill=\"currentColor\"/><path d=\"M14.5039 5C14.5039 4.44772 14.0562 4 13.5039 4C12.9516 4 12.5039 4.44772 12.5039 5V7.5C12.5039 8.05228 12.9516 8.5 13.5039 8.5C14.0562 8.5 14.5039 8.05228 14.5039 7.5V5Z\" fill=\"currentColor\"/><path d=\"M11.0039 7C11.0039 6.44772 10.5562 6 10.0039 6C9.45162 6 9.00391 6.44772 9.00391 7V10C9.00391 10.5523 9.45162 11 10.0039 11C10.5562 11 11.0039 10.5523 11.0039 10V7Z\" fill=\"currentColor\"/><path d=\"M4.00391 9C4.00391 8.44772 3.55619 8 3.00391 8C2.45162 8 2.00391 8.44772 2.00391 9V11C2.00391 11.5523 2.45162 12 3.00391 12C3.55619 12 4.00391 11.5523 4.00391 11V9Z\" 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 fill-rule=\"evenodd\" clip-rule=\"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\"/>",
|
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"
|
|
@@ -1936,6 +1940,7 @@ export type CentralIconName =
|
|
|
1936
1940
|
| "IconVoiceMemo"
|
|
1937
1941
|
| "IconVoiceMid"
|
|
1938
1942
|
| "IconVoiceMode"
|
|
1943
|
+
| "IconVoiceover"
|
|
1939
1944
|
| "IconVoiceRecord"
|
|
1940
1945
|
| "IconVoiceSettings"
|
|
1941
1946
|
| "IconVoiceShare"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.242",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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": 2006,
|
|
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": 12,
|
|
111
111
|
"icons": [
|
|
112
112
|
"IconCircleHalfFill",
|
|
113
113
|
"IconCirclePerson",
|
|
@@ -119,11 +119,12 @@
|
|
|
119
119
|
"IconImageAltText",
|
|
120
120
|
"IconReduceMotion",
|
|
121
121
|
"IconSquareLinesBottom",
|
|
122
|
-
"IconVoiceControl"
|
|
122
|
+
"IconVoiceControl",
|
|
123
|
+
"IconVoiceover"
|
|
123
124
|
]
|
|
124
125
|
},
|
|
125
126
|
"Arrows": {
|
|
126
|
-
"count":
|
|
127
|
+
"count": 140,
|
|
127
128
|
"icons": [
|
|
128
129
|
"IconArrow",
|
|
129
130
|
"IconArrowBottomTop",
|
|
@@ -220,7 +221,11 @@
|
|
|
220
221
|
"IconChevronTop",
|
|
221
222
|
"IconChevronTopMedium",
|
|
222
223
|
"IconChevronTopSmall",
|
|
224
|
+
"IconChevronTriangleDownMedium",
|
|
223
225
|
"IconChevronTriangleDownSmall",
|
|
226
|
+
"IconChevronTriangleLeftMedium",
|
|
227
|
+
"IconChevronTriangleRightMedium",
|
|
228
|
+
"IconChevronTriangleUpMedium",
|
|
224
229
|
"IconChevronTriangleUpSmall",
|
|
225
230
|
"IconCollaborationPointerLeft",
|
|
226
231
|
"IconCollaborationPointerRight",
|
|
@@ -2681,8 +2686,12 @@
|
|
|
2681
2686
|
"IconChevronTop": "chevron-top",
|
|
2682
2687
|
"IconChevronTopMedium": "chevron-top-medium",
|
|
2683
2688
|
"IconChevronTopSmall": "chevron-top-small",
|
|
2684
|
-
"
|
|
2685
|
-
"
|
|
2689
|
+
"IconChevronTriangleDownMedium": "chevron-triangle-down-medium, dropdown, caret",
|
|
2690
|
+
"IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown, caret",
|
|
2691
|
+
"IconChevronTriangleLeftMedium": "chevron-triangle-left-medium, dropdown, caret",
|
|
2692
|
+
"IconChevronTriangleRightMedium": "chevron-triangle-right-medium, dropdown, caret",
|
|
2693
|
+
"IconChevronTriangleUpMedium": "chevron-triangle-up-medium, dropdown, caret",
|
|
2694
|
+
"IconChevronTriangleUpSmall": "chevron-triangle-up-small, dropdown, caret",
|
|
2686
2695
|
"IconChip": "chip, esim",
|
|
2687
2696
|
"IconChipSimple": "chip-simple, processor",
|
|
2688
2697
|
"IconChrome": "chrome",
|
|
@@ -4139,6 +4148,7 @@
|
|
|
4139
4148
|
"IconVoiceMemo": "voice-memo, voice-control",
|
|
4140
4149
|
"IconVoiceMid": "voice-mid, wave",
|
|
4141
4150
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
4151
|
+
"IconVoiceover": "voiceover, sound",
|
|
4142
4152
|
"IconVoiceRecord": "voice-record",
|
|
4143
4153
|
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
4144
4154
|
"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";
|
|
@@ -1939,6 +1943,7 @@ export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoice
|
|
|
1939
1943
|
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1940
1944
|
export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
|
|
1941
1945
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1946
|
+
export { IconVoiceover, default as IconVoiceoverDefault, } from "./IconVoiceover";
|
|
1942
1947
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1943
1948
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|
|
1944
1949
|
export { IconVolumeFull, default as IconVolumeFullDefault, } from "./IconVolumeFull";
|