@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.240 → 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 (43) 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/IconReduceMotion/index.d.ts +4 -0
  22. package/IconReduceMotion/index.js +2 -0
  23. package/IconReduceMotion/index.js.map +1 -0
  24. package/IconReduceMotion/index.mjs +2 -0
  25. package/IconReduceMotion/index.mjs.map +1 -0
  26. package/IconVoiceover/index.d.ts +4 -0
  27. package/IconVoiceover/index.js +2 -0
  28. package/IconVoiceover/index.js.map +1 -0
  29. package/IconVoiceover/index.mjs +2 -0
  30. package/IconVoiceover/index.mjs.map +1 -0
  31. package/README.md +6 -0
  32. package/filtered-icons.json +86 -2
  33. package/icons/index.d.ts +6 -0
  34. package/icons-index.json +19 -7
  35. package/index.d.ts +6 -0
  36. package/index.js +1 -1
  37. package/index.js.map +1 -1
  38. package/index.mjs +1 -1
  39. package/index.mjs.map +1 -1
  40. package/license-check.js +1 -1
  41. package/package.json +1 -1
  42. package/skills/central-icons-react-native/SKILL.md +9 -3
  43. package/tsx-icons.json +44 -2
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronTriangleDownMedium: FC<CentralIconBaseProps>;
4
+ export default IconChevronTriangleDownMedium;
@@ -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})},l=(r,o,e,a)=>{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:!(a=B(o,n))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>l(t({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleDownMedium:()=>i,default:()=>h});module.exports=v(d);var p=m(require("react"));var C=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.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:"M12 17.5625L4.86523 9H19.1348L12 17.5625Z",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 d=\"M12 17.5625L4.86523 9H19.1348L12 17.5625Z\" fill=\"currentColor\" />\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,QAAK,EAAE,4CAA4C,KAAK,eAAe,CAC1E,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 a}from"react-native-svg";var e=({children:o,size:r=24,...t})=>p.createElement(a,{...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 l}from"react-native-svg";var m=o=>n.createElement(e,{...o},n.createElement(l,{d:"M12 17.5625L4.86523 9H19.1348L12 17.5625Z",fill:"currentColor"})),x=m;export{m 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 d=\"M12 17.5625L4.86523 9H19.1348L12 17.5625Z\" fill=\"currentColor\" />\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,CAAK,EAAE,4CAA4C,KAAK,eAAe,CAC1E,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleDownMedium","props","React","CentralIconBase","IconChevronTriangleDownMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronTriangleLeftMedium: FC<CentralIconBaseProps>;
4
+ export default IconChevronTriangleLeftMedium;
@@ -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})},l=(r,o,e,a)=>{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:!(a=B(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>l(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleLeftMedium:()=>i,default:()=>h});module.exports=v(d);var p=m(require("react"));var C=m(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>C.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:"M6.4375 12L15 19.1348V4.86523L6.4375 12Z",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 d=\"M6.4375 12L15 19.1348V4.86523L6.4375 12Z\" fill=\"currentColor\" />\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,QAAK,EAAE,2CAA2C,KAAK,eAAe,CACzE,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 a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 l}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(l,{d:"M6.4375 12L15 19.1348V4.86523L6.4375 12Z",fill:"currentColor"})),x=m;export{m 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 d=\"M6.4375 12L15 19.1348V4.86523L6.4375 12Z\" fill=\"currentColor\" />\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,CAAK,EAAE,2CAA2C,KAAK,eAAe,CACzE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleLeftMedium","props","React","CentralIconBase","IconChevronTriangleLeftMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronTriangleRightMedium: FC<CentralIconBaseProps>;
4
+ export default IconChevronTriangleRightMedium;
@@ -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})},l=(r,o,e,a)=>{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:!(a=u(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?g(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>l(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleRightMedium:()=>i,default:()=>v});module.exports=h(d);var p=m(require("react"));var C=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.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:"M17.5625 12L9 19.1348V4.86523L17.5625 12Z",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 d=\"M17.5625 12L9 19.1348V4.86523L17.5625 12Z\" fill=\"currentColor\" />\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,QAAK,EAAE,4CAA4C,KAAK,eAAe,CAC1E,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 a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 l}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(l,{d:"M17.5625 12L9 19.1348V4.86523L17.5625 12Z",fill:"currentColor"})),x=m;export{m 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 d=\"M17.5625 12L9 19.1348V4.86523L17.5625 12Z\" fill=\"currentColor\" />\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,CAAK,EAAE,4CAA4C,KAAK,eAAe,CAC1E,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleRightMedium","props","React","CentralIconBase","IconChevronTriangleRightMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronTriangleUpMedium: FC<CentralIconBaseProps>;
4
+ export default IconChevronTriangleUpMedium;
@@ -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})},l=(r,o,e,a)=>{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:!(a=B(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>l(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleUpMedium:()=>i,default:()=>h});module.exports=v(d);var p=m(require("react"));var C=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.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:"M12 6.4375L4.86523 15H19.1348L12 6.4375Z",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 d=\"M12 6.4375L4.86523 15H19.1348L12 6.4375Z\" fill=\"currentColor\" />\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,QAAK,EAAE,2CAA2C,KAAK,eAAe,CACzE,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 a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 l}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(l,{d:"M12 6.4375L4.86523 15H19.1348L12 6.4375Z",fill:"currentColor"})),x=m;export{m 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 d=\"M12 6.4375L4.86523 15H19.1348L12 6.4375Z\" fill=\"currentColor\" />\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,CAAK,EAAE,2CAA2C,KAAK,eAAe,CACzE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconReduceMotion: FC<CentralIconBaseProps>;
4
+ export default IconReduceMotion;
@@ -0,0 +1,2 @@
1
+ "use strict";var m=Object.create;var t=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(C,r)=>{for(var n in r)t(C,n,{get:r[n],enumerable:!0})},i=(C,r,n,f)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of s(r))!I.call(C,e)&&e!==n&&t(C,e,{get:()=>r[e],enumerable:!(f=c(r,e))||f.enumerable});return C};var p=(C,r,n)=>(n=C!=null?m(B(C)):{},i(r||!C||!C.__esModule?t(n,"default",{value:C,enumerable:!0}):n,C)),x=C=>i(t({},"__esModule",{value:!0}),C);var g={};v(g,{IconReduceMotion:()=>Z,default:()=>P});module.exports=x(g);var o=p(require("react"));var u=p(require("react")),d=require("react-native-svg"),M=({children:C,size:r=24,...n})=>u.default.createElement(d.Svg,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var l=require("react-native-svg"),Z=C=>o.default.createElement(M,{...C},o.default.createElement(l.Path,{d:"M9.00488 18C9.55703 17.9997 10.0053 18.4469 10.0059 18.999C10.0063 19.5513 9.55814 19.9996 9.00586 20H8.99414C8.44186 19.9996 7.99372 19.5513 7.99414 18.999C7.99468 18.4469 8.44297 17.9997 8.99512 18H9.00488Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M14.5469 14.292C14.7581 13.7817 15.3432 13.5389 15.8535 13.75C16.3638 13.9612 16.6057 14.5463 16.3945 15.0566C16.393 15.0604 16.3922 15.0646 16.3906 15.0684C16.1787 15.5783 15.593 15.8202 15.083 15.6084C14.5731 15.3965 14.3311 14.8107 14.543 14.3008C14.5442 14.2979 14.5457 14.2949 14.5469 14.292Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M15.999 10.9941C16.5513 10.9937 16.9996 11.4419 17 11.9941V12.0059C16.9996 12.5581 16.5513 13.0063 15.999 13.0059C15.4469 13.0053 14.9997 12.557 15 12.0049V11.9951C14.9997 11.443 15.4469 10.9947 15.999 10.9941Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M15.083 8.3916C15.593 8.17978 16.1787 8.42171 16.3906 8.93164C16.3922 8.93543 16.393 8.93956 16.3945 8.94336C16.6057 9.45366 16.3638 10.0388 15.8535 10.25C15.3432 10.4611 14.7581 10.2183 14.5469 9.70801C14.5457 9.70512 14.5442 9.7021 14.543 9.69922C14.3311 9.18925 14.5731 8.60354 15.083 8.3916Z",fill:"currentColor"}),o.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.9377 20 12.9245 19.791 11.9971 19.415C11.5014 19.585 10.9531 19.3442 10.75 18.8535C10.7364 18.8206 10.7247 18.7873 10.7148 18.7539C8.48249 17.3346 7 14.8413 7 12C7 9.15853 8.48224 6.66439 10.7148 5.24512C10.7247 5.21199 10.7365 5.17911 10.75 5.14648C10.953 4.65585 11.5015 4.41425 11.9971 4.58398C12.9244 4.20811 13.9378 4 15 4ZM15 6C14.7044 6 14.414 6.0222 14.1299 6.06348C14.3212 6.09915 14.5042 6.19094 14.6523 6.33887C14.6553 6.34179 14.6582 6.34472 14.6611 6.34766C15.0513 6.73848 15.051 7.3715 14.6602 7.76172C14.2694 8.15191 13.6363 8.15147 13.2461 7.76074C13.2439 7.75853 13.2415 7.75612 13.2393 7.75391C12.8485 7.36368 12.8481 6.73064 13.2383 6.33984C13.2828 6.29525 13.3307 6.2561 13.3809 6.22168C10.8538 6.92832 9 9.24738 9 12C9 14.7525 10.8539 17.0706 13.3809 17.7773C13.3309 17.743 13.2827 17.7046 13.2383 17.6602C12.8481 17.2694 12.8485 16.6363 13.2393 16.2461C13.2415 16.2439 13.2439 16.2415 13.2461 16.2393C13.6363 15.8485 14.2694 15.8481 14.6602 16.2383C15.051 16.6285 15.0513 17.2615 14.6611 17.6523C14.6582 17.6553 14.6553 17.6582 14.6523 17.6611C14.5042 17.809 14.3212 17.8999 14.1299 17.9355C14.414 17.9768 14.7044 18 15 18C18.3137 18 21 15.3137 21 12C21 8.68629 18.3137 6 15 6Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M5.3916 18.083C5.60354 17.5731 6.18925 17.3311 6.69922 17.543C6.7021 17.5442 6.70512 17.5457 6.70801 17.5469C7.21826 17.7581 7.46114 18.3432 7.25 18.8535C7.03882 19.3638 6.45366 19.6057 5.94336 19.3945C5.93956 19.393 5.93543 19.3922 5.93164 19.3906C5.42171 19.1787 5.17978 18.593 5.3916 18.083Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M3.33984 16.2383C3.73064 15.8481 4.36368 15.8485 4.75391 16.2393C4.75612 16.2415 4.75853 16.2439 4.76074 16.2461C5.15147 16.6363 5.15191 17.2694 4.76172 17.6602C4.3715 18.051 3.73848 18.0513 3.34766 17.6611C3.34472 17.6582 3.34179 17.6553 3.33887 17.6523C2.94865 17.2615 2.94904 16.6285 3.33984 16.2383Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M2.14648 13.75C2.65677 13.5389 3.24193 13.7817 3.45312 14.292C3.45432 14.2949 3.45583 14.2979 3.45703 14.3008C3.6689 14.8107 3.42695 15.3965 2.91699 15.6084C2.40704 15.8202 1.82131 15.5783 1.60938 15.0684C1.6078 15.0646 1.60704 15.0604 1.60547 15.0566C1.39432 14.5463 1.6362 13.9612 2.14648 13.75Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M2.00098 10.9941C2.55312 10.9947 3.00035 11.443 3 11.9951V12.0049C3.00035 12.557 2.55312 13.0053 2.00098 13.0059C1.44869 13.0063 1.00043 12.5581 1 12.0059V11.9941C1.00043 11.4419 1.44869 10.9937 2.00098 10.9941Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M1.60938 8.93164C1.82131 8.42171 2.40704 8.17978 2.91699 8.3916C3.42695 8.60354 3.6689 9.18925 3.45703 9.69922C3.45583 9.7021 3.45432 9.70512 3.45312 9.70801C3.24193 10.2183 2.65677 10.4611 2.14648 10.25C1.6362 10.0388 1.39432 9.45366 1.60547 8.94336C1.60704 8.93956 1.6078 8.93543 1.60938 8.93164Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M3.34766 6.33887C3.73848 5.94865 4.3715 5.94904 4.76172 6.33984C5.15191 6.73064 5.15147 7.36368 4.76074 7.75391C4.75853 7.75612 4.75612 7.75853 4.75391 7.76074C4.36368 8.15147 3.73064 8.15191 3.33984 7.76172C2.94904 7.3715 2.94865 6.73848 3.33887 6.34766C3.34179 6.34472 3.34472 6.34179 3.34766 6.33887Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M5.94336 4.60547C6.45366 4.39432 7.03882 4.6362 7.25 5.14648C7.46114 5.65677 7.21826 6.24193 6.70801 6.45312C6.70512 6.45432 6.7021 6.45583 6.69922 6.45703C6.18925 6.6689 5.60354 6.42695 5.3916 5.91699C5.17978 5.40704 5.42171 4.82131 5.93164 4.60938C5.93543 4.6078 5.93956 4.60704 5.94336 4.60547Z",fill:"currentColor"}),o.default.createElement(l.Path,{d:"M9.00586 4C9.55814 4.00043 10.0063 4.44869 10.0059 5.00098C10.0053 5.55312 9.55703 6.00035 9.00488 6H8.99512C8.44297 6.00035 7.99468 5.55312 7.99414 5.00098C7.99372 4.44869 8.44186 4.00043 8.99414 4H9.00586Z",fill:"currentColor"})),P=Z;0&&(module.exports={IconReduceMotion});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconReduceMotion/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 IconReduceMotion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.00488 18C9.55703 17.9997 10.0053 18.4469 10.0059 18.999C10.0063 19.5513 9.55814 19.9996 9.00586 20H8.99414C8.44186 19.9996 7.99372 19.5513 7.99414 18.999C7.99468 18.4469 8.44297 17.9997 8.99512 18H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.5469 14.292C14.7581 13.7817 15.3432 13.5389 15.8535 13.75C16.3638 13.9612 16.6057 14.5463 16.3945 15.0566C16.393 15.0604 16.3922 15.0646 16.3906 15.0684C16.1787 15.5783 15.593 15.8202 15.083 15.6084C14.5731 15.3965 14.3311 14.8107 14.543 14.3008C14.5442 14.2979 14.5457 14.2949 14.5469 14.292Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.999 10.9941C16.5513 10.9937 16.9996 11.4419 17 11.9941V12.0059C16.9996 12.5581 16.5513 13.0063 15.999 13.0059C15.4469 13.0053 14.9997 12.557 15 12.0049V11.9951C14.9997 11.443 15.4469 10.9947 15.999 10.9941Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.083 8.3916C15.593 8.17978 16.1787 8.42171 16.3906 8.93164C16.3922 8.93543 16.393 8.93956 16.3945 8.94336C16.6057 9.45366 16.3638 10.0388 15.8535 10.25C15.3432 10.4611 14.7581 10.2183 14.5469 9.70801C14.5457 9.70512 14.5442 9.7021 14.543 9.69922C14.3311 9.18925 14.5731 8.60354 15.083 8.3916Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.9377 20 12.9245 19.791 11.9971 19.415C11.5014 19.585 10.9531 19.3442 10.75 18.8535C10.7364 18.8206 10.7247 18.7873 10.7148 18.7539C8.48249 17.3346 7 14.8413 7 12C7 9.15853 8.48224 6.66439 10.7148 5.24512C10.7247 5.21199 10.7365 5.17911 10.75 5.14648C10.953 4.65585 11.5015 4.41425 11.9971 4.58398C12.9244 4.20811 13.9378 4 15 4ZM15 6C14.7044 6 14.414 6.0222 14.1299 6.06348C14.3212 6.09915 14.5042 6.19094 14.6523 6.33887C14.6553 6.34179 14.6582 6.34472 14.6611 6.34766C15.0513 6.73848 15.051 7.3715 14.6602 7.76172C14.2694 8.15191 13.6363 8.15147 13.2461 7.76074C13.2439 7.75853 13.2415 7.75612 13.2393 7.75391C12.8485 7.36368 12.8481 6.73064 13.2383 6.33984C13.2828 6.29525 13.3307 6.2561 13.3809 6.22168C10.8538 6.92832 9 9.24738 9 12C9 14.7525 10.8539 17.0706 13.3809 17.7773C13.3309 17.743 13.2827 17.7046 13.2383 17.6602C12.8481 17.2694 12.8485 16.6363 13.2393 16.2461C13.2415 16.2439 13.2439 16.2415 13.2461 16.2393C13.6363 15.8485 14.2694 15.8481 14.6602 16.2383C15.051 16.6285 15.0513 17.2615 14.6611 17.6523C14.6582 17.6553 14.6553 17.6582 14.6523 17.6611C14.5042 17.809 14.3212 17.8999 14.1299 17.9355C14.414 17.9768 14.7044 18 15 18C18.3137 18 21 15.3137 21 12C21 8.68629 18.3137 6 15 6Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.3916 18.083C5.60354 17.5731 6.18925 17.3311 6.69922 17.543C6.7021 17.5442 6.70512 17.5457 6.70801 17.5469C7.21826 17.7581 7.46114 18.3432 7.25 18.8535C7.03882 19.3638 6.45366 19.6057 5.94336 19.3945C5.93956 19.393 5.93543 19.3922 5.93164 19.3906C5.42171 19.1787 5.17978 18.593 5.3916 18.083Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.33984 16.2383C3.73064 15.8481 4.36368 15.8485 4.75391 16.2393C4.75612 16.2415 4.75853 16.2439 4.76074 16.2461C5.15147 16.6363 5.15191 17.2694 4.76172 17.6602C4.3715 18.051 3.73848 18.0513 3.34766 17.6611C3.34472 17.6582 3.34179 17.6553 3.33887 17.6523C2.94865 17.2615 2.94904 16.6285 3.33984 16.2383Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.14648 13.75C2.65677 13.5389 3.24193 13.7817 3.45312 14.292C3.45432 14.2949 3.45583 14.2979 3.45703 14.3008C3.6689 14.8107 3.42695 15.3965 2.91699 15.6084C2.40704 15.8202 1.82131 15.5783 1.60938 15.0684C1.6078 15.0646 1.60704 15.0604 1.60547 15.0566C1.39432 14.5463 1.6362 13.9612 2.14648 13.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.00098 10.9941C2.55312 10.9947 3.00035 11.443 3 11.9951V12.0049C3.00035 12.557 2.55312 13.0053 2.00098 13.0059C1.44869 13.0063 1.00043 12.5581 1 12.0059V11.9941C1.00043 11.4419 1.44869 10.9937 2.00098 10.9941Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.60938 8.93164C1.82131 8.42171 2.40704 8.17978 2.91699 8.3916C3.42695 8.60354 3.6689 9.18925 3.45703 9.69922C3.45583 9.7021 3.45432 9.70512 3.45312 9.70801C3.24193 10.2183 2.65677 10.4611 2.14648 10.25C1.6362 10.0388 1.39432 9.45366 1.60547 8.94336C1.60704 8.93956 1.6078 8.93543 1.60938 8.93164Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.34766 6.33887C3.73848 5.94865 4.3715 5.94904 4.76172 6.33984C5.15191 6.73064 5.15147 7.36368 4.76074 7.75391C4.75853 7.75612 4.75612 7.75853 4.75391 7.76074C4.36368 8.15147 3.73064 8.15191 3.33984 7.76172C2.94904 7.3715 2.94865 6.73848 3.33887 6.34766C3.34179 6.34472 3.34472 6.34179 3.34766 6.33887Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.94336 4.60547C6.45366 4.39432 7.03882 4.6362 7.25 5.14648C7.46114 5.65677 7.21826 6.24193 6.70801 6.45312C6.70512 6.45432 6.7021 6.45583 6.69922 6.45703C6.18925 6.6689 5.60354 6.42695 5.3916 5.91699C5.17978 5.40704 5.42171 4.82131 5.93164 4.60938C5.93543 4.6078 5.93956 4.60704 5.94336 4.60547Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00586 4C9.55814 4.00043 10.0063 4.44869 10.0059 5.00098C10.0053 5.55312 9.55703 6.00035 9.00488 6H8.99512C8.44297 6.00035 7.99468 5.55312 7.99414 5.00098C7.99372 4.44869 8.44186 4.00043 8.99414 4H9.00586Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReduceMotion;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kvCACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ySACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconReduceMotion_exports","__export","IconReduceMotion","IconReduceMotion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconReduceMotion","props","React","CentralIconBase","IconReduceMotion_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import t from"react";import{Svg as f}from"react-native-svg";var n=({children:l,size:o=24,...e})=>t.createElement(f,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},l);import{Path as r}from"react-native-svg";var i=l=>C.createElement(n,{...l},C.createElement(r,{d:"M9.00488 18C9.55703 17.9997 10.0053 18.4469 10.0059 18.999C10.0063 19.5513 9.55814 19.9996 9.00586 20H8.99414C8.44186 19.9996 7.99372 19.5513 7.99414 18.999C7.99468 18.4469 8.44297 17.9997 8.99512 18H9.00488Z",fill:"currentColor"}),C.createElement(r,{d:"M14.5469 14.292C14.7581 13.7817 15.3432 13.5389 15.8535 13.75C16.3638 13.9612 16.6057 14.5463 16.3945 15.0566C16.393 15.0604 16.3922 15.0646 16.3906 15.0684C16.1787 15.5783 15.593 15.8202 15.083 15.6084C14.5731 15.3965 14.3311 14.8107 14.543 14.3008C14.5442 14.2979 14.5457 14.2949 14.5469 14.292Z",fill:"currentColor"}),C.createElement(r,{d:"M15.999 10.9941C16.5513 10.9937 16.9996 11.4419 17 11.9941V12.0059C16.9996 12.5581 16.5513 13.0063 15.999 13.0059C15.4469 13.0053 14.9997 12.557 15 12.0049V11.9951C14.9997 11.443 15.4469 10.9947 15.999 10.9941Z",fill:"currentColor"}),C.createElement(r,{d:"M15.083 8.3916C15.593 8.17978 16.1787 8.42171 16.3906 8.93164C16.3922 8.93543 16.393 8.93956 16.3945 8.94336C16.6057 9.45366 16.3638 10.0388 15.8535 10.25C15.3432 10.4611 14.7581 10.2183 14.5469 9.70801C14.5457 9.70512 14.5442 9.7021 14.543 9.69922C14.3311 9.18925 14.5731 8.60354 15.083 8.3916Z",fill:"currentColor"}),C.createElement(r,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.9377 20 12.9245 19.791 11.9971 19.415C11.5014 19.585 10.9531 19.3442 10.75 18.8535C10.7364 18.8206 10.7247 18.7873 10.7148 18.7539C8.48249 17.3346 7 14.8413 7 12C7 9.15853 8.48224 6.66439 10.7148 5.24512C10.7247 5.21199 10.7365 5.17911 10.75 5.14648C10.953 4.65585 11.5015 4.41425 11.9971 4.58398C12.9244 4.20811 13.9378 4 15 4ZM15 6C14.7044 6 14.414 6.0222 14.1299 6.06348C14.3212 6.09915 14.5042 6.19094 14.6523 6.33887C14.6553 6.34179 14.6582 6.34472 14.6611 6.34766C15.0513 6.73848 15.051 7.3715 14.6602 7.76172C14.2694 8.15191 13.6363 8.15147 13.2461 7.76074C13.2439 7.75853 13.2415 7.75612 13.2393 7.75391C12.8485 7.36368 12.8481 6.73064 13.2383 6.33984C13.2828 6.29525 13.3307 6.2561 13.3809 6.22168C10.8538 6.92832 9 9.24738 9 12C9 14.7525 10.8539 17.0706 13.3809 17.7773C13.3309 17.743 13.2827 17.7046 13.2383 17.6602C12.8481 17.2694 12.8485 16.6363 13.2393 16.2461C13.2415 16.2439 13.2439 16.2415 13.2461 16.2393C13.6363 15.8485 14.2694 15.8481 14.6602 16.2383C15.051 16.6285 15.0513 17.2615 14.6611 17.6523C14.6582 17.6553 14.6553 17.6582 14.6523 17.6611C14.5042 17.809 14.3212 17.8999 14.1299 17.9355C14.414 17.9768 14.7044 18 15 18C18.3137 18 21 15.3137 21 12C21 8.68629 18.3137 6 15 6Z",fill:"currentColor"}),C.createElement(r,{d:"M5.3916 18.083C5.60354 17.5731 6.18925 17.3311 6.69922 17.543C6.7021 17.5442 6.70512 17.5457 6.70801 17.5469C7.21826 17.7581 7.46114 18.3432 7.25 18.8535C7.03882 19.3638 6.45366 19.6057 5.94336 19.3945C5.93956 19.393 5.93543 19.3922 5.93164 19.3906C5.42171 19.1787 5.17978 18.593 5.3916 18.083Z",fill:"currentColor"}),C.createElement(r,{d:"M3.33984 16.2383C3.73064 15.8481 4.36368 15.8485 4.75391 16.2393C4.75612 16.2415 4.75853 16.2439 4.76074 16.2461C5.15147 16.6363 5.15191 17.2694 4.76172 17.6602C4.3715 18.051 3.73848 18.0513 3.34766 17.6611C3.34472 17.6582 3.34179 17.6553 3.33887 17.6523C2.94865 17.2615 2.94904 16.6285 3.33984 16.2383Z",fill:"currentColor"}),C.createElement(r,{d:"M2.14648 13.75C2.65677 13.5389 3.24193 13.7817 3.45312 14.292C3.45432 14.2949 3.45583 14.2979 3.45703 14.3008C3.6689 14.8107 3.42695 15.3965 2.91699 15.6084C2.40704 15.8202 1.82131 15.5783 1.60938 15.0684C1.6078 15.0646 1.60704 15.0604 1.60547 15.0566C1.39432 14.5463 1.6362 13.9612 2.14648 13.75Z",fill:"currentColor"}),C.createElement(r,{d:"M2.00098 10.9941C2.55312 10.9947 3.00035 11.443 3 11.9951V12.0049C3.00035 12.557 2.55312 13.0053 2.00098 13.0059C1.44869 13.0063 1.00043 12.5581 1 12.0059V11.9941C1.00043 11.4419 1.44869 10.9937 2.00098 10.9941Z",fill:"currentColor"}),C.createElement(r,{d:"M1.60938 8.93164C1.82131 8.42171 2.40704 8.17978 2.91699 8.3916C3.42695 8.60354 3.6689 9.18925 3.45703 9.69922C3.45583 9.7021 3.45432 9.70512 3.45312 9.70801C3.24193 10.2183 2.65677 10.4611 2.14648 10.25C1.6362 10.0388 1.39432 9.45366 1.60547 8.94336C1.60704 8.93956 1.6078 8.93543 1.60938 8.93164Z",fill:"currentColor"}),C.createElement(r,{d:"M3.34766 6.33887C3.73848 5.94865 4.3715 5.94904 4.76172 6.33984C5.15191 6.73064 5.15147 7.36368 4.76074 7.75391C4.75853 7.75612 4.75612 7.75853 4.75391 7.76074C4.36368 8.15147 3.73064 8.15191 3.33984 7.76172C2.94904 7.3715 2.94865 6.73848 3.33887 6.34766C3.34179 6.34472 3.34472 6.34179 3.34766 6.33887Z",fill:"currentColor"}),C.createElement(r,{d:"M5.94336 4.60547C6.45366 4.39432 7.03882 4.6362 7.25 5.14648C7.46114 5.65677 7.21826 6.24193 6.70801 6.45312C6.70512 6.45432 6.7021 6.45583 6.69922 6.45703C6.18925 6.6689 5.60354 6.42695 5.3916 5.91699C5.17978 5.40704 5.42171 4.82131 5.93164 4.60938C5.93543 4.6078 5.93956 4.60704 5.94336 4.60547Z",fill:"currentColor"}),C.createElement(r,{d:"M9.00586 4C9.55814 4.00043 10.0063 4.44869 10.0059 5.00098C10.0053 5.55312 9.55703 6.00035 9.00488 6H8.99512C8.44297 6.00035 7.99468 5.55312 7.99414 5.00098C7.99372 4.44869 8.44186 4.00043 8.99414 4H9.00586Z",fill:"currentColor"})),I=i;export{i as IconReduceMotion,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconReduceMotion/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 IconReduceMotion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.00488 18C9.55703 17.9997 10.0053 18.4469 10.0059 18.999C10.0063 19.5513 9.55814 19.9996 9.00586 20H8.99414C8.44186 19.9996 7.99372 19.5513 7.99414 18.999C7.99468 18.4469 8.44297 17.9997 8.99512 18H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.5469 14.292C14.7581 13.7817 15.3432 13.5389 15.8535 13.75C16.3638 13.9612 16.6057 14.5463 16.3945 15.0566C16.393 15.0604 16.3922 15.0646 16.3906 15.0684C16.1787 15.5783 15.593 15.8202 15.083 15.6084C14.5731 15.3965 14.3311 14.8107 14.543 14.3008C14.5442 14.2979 14.5457 14.2949 14.5469 14.292Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.999 10.9941C16.5513 10.9937 16.9996 11.4419 17 11.9941V12.0059C16.9996 12.5581 16.5513 13.0063 15.999 13.0059C15.4469 13.0053 14.9997 12.557 15 12.0049V11.9951C14.9997 11.443 15.4469 10.9947 15.999 10.9941Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.083 8.3916C15.593 8.17978 16.1787 8.42171 16.3906 8.93164C16.3922 8.93543 16.393 8.93956 16.3945 8.94336C16.6057 9.45366 16.3638 10.0388 15.8535 10.25C15.3432 10.4611 14.7581 10.2183 14.5469 9.70801C14.5457 9.70512 14.5442 9.7021 14.543 9.69922C14.3311 9.18925 14.5731 8.60354 15.083 8.3916Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.9377 20 12.9245 19.791 11.9971 19.415C11.5014 19.585 10.9531 19.3442 10.75 18.8535C10.7364 18.8206 10.7247 18.7873 10.7148 18.7539C8.48249 17.3346 7 14.8413 7 12C7 9.15853 8.48224 6.66439 10.7148 5.24512C10.7247 5.21199 10.7365 5.17911 10.75 5.14648C10.953 4.65585 11.5015 4.41425 11.9971 4.58398C12.9244 4.20811 13.9378 4 15 4ZM15 6C14.7044 6 14.414 6.0222 14.1299 6.06348C14.3212 6.09915 14.5042 6.19094 14.6523 6.33887C14.6553 6.34179 14.6582 6.34472 14.6611 6.34766C15.0513 6.73848 15.051 7.3715 14.6602 7.76172C14.2694 8.15191 13.6363 8.15147 13.2461 7.76074C13.2439 7.75853 13.2415 7.75612 13.2393 7.75391C12.8485 7.36368 12.8481 6.73064 13.2383 6.33984C13.2828 6.29525 13.3307 6.2561 13.3809 6.22168C10.8538 6.92832 9 9.24738 9 12C9 14.7525 10.8539 17.0706 13.3809 17.7773C13.3309 17.743 13.2827 17.7046 13.2383 17.6602C12.8481 17.2694 12.8485 16.6363 13.2393 16.2461C13.2415 16.2439 13.2439 16.2415 13.2461 16.2393C13.6363 15.8485 14.2694 15.8481 14.6602 16.2383C15.051 16.6285 15.0513 17.2615 14.6611 17.6523C14.6582 17.6553 14.6553 17.6582 14.6523 17.6611C14.5042 17.809 14.3212 17.8999 14.1299 17.9355C14.414 17.9768 14.7044 18 15 18C18.3137 18 21 15.3137 21 12C21 8.68629 18.3137 6 15 6Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.3916 18.083C5.60354 17.5731 6.18925 17.3311 6.69922 17.543C6.7021 17.5442 6.70512 17.5457 6.70801 17.5469C7.21826 17.7581 7.46114 18.3432 7.25 18.8535C7.03882 19.3638 6.45366 19.6057 5.94336 19.3945C5.93956 19.393 5.93543 19.3922 5.93164 19.3906C5.42171 19.1787 5.17978 18.593 5.3916 18.083Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.33984 16.2383C3.73064 15.8481 4.36368 15.8485 4.75391 16.2393C4.75612 16.2415 4.75853 16.2439 4.76074 16.2461C5.15147 16.6363 5.15191 17.2694 4.76172 17.6602C4.3715 18.051 3.73848 18.0513 3.34766 17.6611C3.34472 17.6582 3.34179 17.6553 3.33887 17.6523C2.94865 17.2615 2.94904 16.6285 3.33984 16.2383Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.14648 13.75C2.65677 13.5389 3.24193 13.7817 3.45312 14.292C3.45432 14.2949 3.45583 14.2979 3.45703 14.3008C3.6689 14.8107 3.42695 15.3965 2.91699 15.6084C2.40704 15.8202 1.82131 15.5783 1.60938 15.0684C1.6078 15.0646 1.60704 15.0604 1.60547 15.0566C1.39432 14.5463 1.6362 13.9612 2.14648 13.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.00098 10.9941C2.55312 10.9947 3.00035 11.443 3 11.9951V12.0049C3.00035 12.557 2.55312 13.0053 2.00098 13.0059C1.44869 13.0063 1.00043 12.5581 1 12.0059V11.9941C1.00043 11.4419 1.44869 10.9937 2.00098 10.9941Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.60938 8.93164C1.82131 8.42171 2.40704 8.17978 2.91699 8.3916C3.42695 8.60354 3.6689 9.18925 3.45703 9.69922C3.45583 9.7021 3.45432 9.70512 3.45312 9.70801C3.24193 10.2183 2.65677 10.4611 2.14648 10.25C1.6362 10.0388 1.39432 9.45366 1.60547 8.94336C1.60704 8.93956 1.6078 8.93543 1.60938 8.93164Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.34766 6.33887C3.73848 5.94865 4.3715 5.94904 4.76172 6.33984C5.15191 6.73064 5.15147 7.36368 4.76074 7.75391C4.75853 7.75612 4.75612 7.75853 4.75391 7.76074C4.36368 8.15147 3.73064 8.15191 3.33984 7.76172C2.94904 7.3715 2.94865 6.73848 3.33887 6.34766C3.34179 6.34472 3.34472 6.34179 3.34766 6.33887Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.94336 4.60547C6.45366 4.39432 7.03882 4.6362 7.25 5.14648C7.46114 5.65677 7.21826 6.24193 6.70801 6.45312C6.70512 6.45432 6.7021 6.45583 6.69922 6.45703C6.18925 6.6689 5.60354 6.42695 5.3916 5.91699C5.17978 5.40704 5.42171 4.82131 5.93164 4.60938C5.93543 4.6078 5.93956 4.60704 5.94336 4.60547Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00586 4C9.55814 4.00043 10.0063 4.44869 10.0059 5.00098C10.0053 5.55312 9.55703 6.00035 9.00488 6H8.99512C8.44297 6.00035 7.99468 5.55312 7.99414 5.00098C7.99372 4.44869 8.44186 4.00043 8.99414 4H9.00586Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReduceMotion;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kvCACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ySACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconReduceMotion","props","React","CentralIconBase","IconReduceMotion_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconVoiceover: FC<CentralIconBaseProps>;
4
+ export default IconVoiceover;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=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)n(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!d.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(l=v(r,t))||l.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},C(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>C(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconVoiceover:()=>i,default:()=>g});module.exports=P(h);var p=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=>p.default.createElement(s,{...o},p.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 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"})),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 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\"\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,kTACF,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 t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(l,{...n,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 C}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(C,{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"})),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 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\"\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,kTACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
package/README.md CHANGED
@@ -246,8 +246,10 @@ Below is a complete list of available icons:
246
246
  - IconEyeSlash
247
247
  - IconEyeSlash2
248
248
  - IconImageAltText
249
+ - IconReduceMotion
249
250
  - IconSquareLinesBottom
250
251
  - IconVoiceControl
252
+ - IconVoiceover
251
253
 
252
254
  ### Arrows
253
255
 
@@ -346,7 +348,11 @@ Below is a complete list of available icons:
346
348
  - IconChevronTop
347
349
  - IconChevronTopMedium
348
350
  - IconChevronTopSmall
351
+ - IconChevronTriangleDownMedium
349
352
  - IconChevronTriangleDownSmall
353
+ - IconChevronTriangleLeftMedium
354
+ - IconChevronTriangleRightMedium
355
+ - IconChevronTriangleUpMedium
350
356
  - IconChevronTriangleUpSmall
351
357
  - IconCollaborationPointerLeft
352
358
  - IconCollaborationPointerRight
@@ -6706,10 +6706,24 @@
6706
6706
  "packageName": "square-filled-radius-0-stroke-2",
6707
6707
  "componentName": "IconChevronTopSmall"
6708
6708
  },
6709
+ {
6710
+ "category": "Arrows",
6711
+ "svg": "<path d=\"M12 17.5625L4.86523 9H19.1348L12 17.5625Z\" fill=\"currentColor\"/>",
6712
+ "iconName": "chevron-triangle-down-medium, dropdown, caret",
6713
+ "variant": {
6714
+ "join": "square",
6715
+ "filled": "on",
6716
+ "radius": "0",
6717
+ "stroke": "2"
6718
+ },
6719
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6720
+ "packageName": "square-filled-radius-0-stroke-2",
6721
+ "componentName": "IconChevronTriangleDownMedium"
6722
+ },
6709
6723
  {
6710
6724
  "category": "Arrows",
6711
6725
  "svg": "<path d=\"M7 10L12 16.6667L17 10H7Z\" fill=\"currentColor\"/>",
6712
- "iconName": "chevron-triangle-down-small, dropdown",
6726
+ "iconName": "chevron-triangle-down-small, dropdown, caret",
6713
6727
  "variant": {
6714
6728
  "join": "square",
6715
6729
  "filled": "on",
@@ -6720,10 +6734,52 @@
6720
6734
  "packageName": "square-filled-radius-0-stroke-2",
6721
6735
  "componentName": "IconChevronTriangleDownSmall"
6722
6736
  },
6737
+ {
6738
+ "category": "Arrows",
6739
+ "svg": "<path d=\"M6.4375 12L15 19.1348V4.86523L6.4375 12Z\" fill=\"currentColor\"/>",
6740
+ "iconName": "chevron-triangle-left-medium, dropdown, caret",
6741
+ "variant": {
6742
+ "join": "square",
6743
+ "filled": "on",
6744
+ "radius": "0",
6745
+ "stroke": "2"
6746
+ },
6747
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6748
+ "packageName": "square-filled-radius-0-stroke-2",
6749
+ "componentName": "IconChevronTriangleLeftMedium"
6750
+ },
6751
+ {
6752
+ "category": "Arrows",
6753
+ "svg": "<path d=\"M17.5625 12L9 19.1348V4.86523L17.5625 12Z\" fill=\"currentColor\"/>",
6754
+ "iconName": "chevron-triangle-right-medium, dropdown, caret",
6755
+ "variant": {
6756
+ "join": "square",
6757
+ "filled": "on",
6758
+ "radius": "0",
6759
+ "stroke": "2"
6760
+ },
6761
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6762
+ "packageName": "square-filled-radius-0-stroke-2",
6763
+ "componentName": "IconChevronTriangleRightMedium"
6764
+ },
6765
+ {
6766
+ "category": "Arrows",
6767
+ "svg": "<path d=\"M12 6.4375L4.86523 15H19.1348L12 6.4375Z\" fill=\"currentColor\"/>",
6768
+ "iconName": "chevron-triangle-up-medium, dropdown, caret",
6769
+ "variant": {
6770
+ "join": "square",
6771
+ "filled": "on",
6772
+ "radius": "0",
6773
+ "stroke": "2"
6774
+ },
6775
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6776
+ "packageName": "square-filled-radius-0-stroke-2",
6777
+ "componentName": "IconChevronTriangleUpMedium"
6778
+ },
6723
6779
  {
6724
6780
  "category": "Arrows",
6725
6781
  "svg": "<path d=\"M12 7.33301L7 13.9997H17L12 7.33301Z\" fill=\"currentColor\"/>",
6726
- "iconName": "chevron-triangle-up-small, dropdown",
6782
+ "iconName": "chevron-triangle-up-small, dropdown, caret",
6727
6783
  "variant": {
6728
6784
  "join": "square",
6729
6785
  "filled": "on",
@@ -20692,6 +20748,20 @@
20692
20748
  "packageName": "square-filled-radius-0-stroke-2",
20693
20749
  "componentName": "IconRedirectArrow"
20694
20750
  },
20751
+ {
20752
+ "category": "Accessibility",
20753
+ "svg": "<path d=\"M9.00488 18C9.55703 17.9997 10.0053 18.4469 10.0059 18.999C10.0063 19.5513 9.55814 19.9996 9.00586 20H8.99414C8.44186 19.9996 7.99372 19.5513 7.99414 18.999C7.99468 18.4469 8.44297 17.9997 8.99512 18H9.00488Z\" fill=\"currentColor\"/><path d=\"M14.5469 14.292C14.7581 13.7817 15.3432 13.5389 15.8535 13.75C16.3638 13.9612 16.6057 14.5463 16.3945 15.0566C16.393 15.0604 16.3922 15.0646 16.3906 15.0684C16.1787 15.5783 15.593 15.8202 15.083 15.6084C14.5731 15.3965 14.3311 14.8107 14.543 14.3008C14.5442 14.2979 14.5457 14.2949 14.5469 14.292Z\" fill=\"currentColor\"/><path d=\"M15.999 10.9941C16.5513 10.9937 16.9996 11.4419 17 11.9941V12.0059C16.9996 12.5581 16.5513 13.0063 15.999 13.0059C15.4469 13.0053 14.9997 12.557 15 12.0049V11.9951C14.9997 11.443 15.4469 10.9947 15.999 10.9941Z\" fill=\"currentColor\"/><path d=\"M15.083 8.3916C15.593 8.17978 16.1787 8.42171 16.3906 8.93164C16.3922 8.93543 16.393 8.93956 16.3945 8.94336C16.6057 9.45366 16.3638 10.0388 15.8535 10.25C15.3432 10.4611 14.7581 10.2183 14.5469 9.70801C14.5457 9.70512 14.5442 9.7021 14.543 9.69922C14.3311 9.18925 14.5731 8.60354 15.083 8.3916Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.9377 20 12.9245 19.791 11.9971 19.415C11.5014 19.585 10.9531 19.3442 10.75 18.8535C10.7364 18.8206 10.7247 18.7873 10.7148 18.7539C8.48249 17.3346 7 14.8413 7 12C7 9.15853 8.48224 6.66439 10.7148 5.24512C10.7247 5.21199 10.7365 5.17911 10.75 5.14648C10.953 4.65585 11.5015 4.41425 11.9971 4.58398C12.9244 4.20811 13.9378 4 15 4ZM15 6C14.7044 6 14.414 6.0222 14.1299 6.06348C14.3212 6.09915 14.5042 6.19094 14.6523 6.33887C14.6553 6.34179 14.6582 6.34472 14.6611 6.34766C15.0513 6.73848 15.051 7.3715 14.6602 7.76172C14.2694 8.15191 13.6363 8.15147 13.2461 7.76074C13.2439 7.75853 13.2415 7.75612 13.2393 7.75391C12.8485 7.36368 12.8481 6.73064 13.2383 6.33984C13.2828 6.29525 13.3307 6.2561 13.3809 6.22168C10.8538 6.92832 9 9.24738 9 12C9 14.7525 10.8539 17.0706 13.3809 17.7773C13.3309 17.743 13.2827 17.7046 13.2383 17.6602C12.8481 17.2694 12.8485 16.6363 13.2393 16.2461C13.2415 16.2439 13.2439 16.2415 13.2461 16.2393C13.6363 15.8485 14.2694 15.8481 14.6602 16.2383C15.051 16.6285 15.0513 17.2615 14.6611 17.6523C14.6582 17.6553 14.6553 17.6582 14.6523 17.6611C14.5042 17.809 14.3212 17.8999 14.1299 17.9355C14.414 17.9768 14.7044 18 15 18C18.3137 18 21 15.3137 21 12C21 8.68629 18.3137 6 15 6Z\" fill=\"currentColor\"/><path d=\"M5.3916 18.083C5.60354 17.5731 6.18925 17.3311 6.69922 17.543C6.7021 17.5442 6.70512 17.5457 6.70801 17.5469C7.21826 17.7581 7.46114 18.3432 7.25 18.8535C7.03882 19.3638 6.45366 19.6057 5.94336 19.3945C5.93956 19.393 5.93543 19.3922 5.93164 19.3906C5.42171 19.1787 5.17978 18.593 5.3916 18.083Z\" fill=\"currentColor\"/><path d=\"M3.33984 16.2383C3.73064 15.8481 4.36368 15.8485 4.75391 16.2393C4.75612 16.2415 4.75853 16.2439 4.76074 16.2461C5.15147 16.6363 5.15191 17.2694 4.76172 17.6602C4.3715 18.051 3.73848 18.0513 3.34766 17.6611C3.34472 17.6582 3.34179 17.6553 3.33887 17.6523C2.94865 17.2615 2.94904 16.6285 3.33984 16.2383Z\" fill=\"currentColor\"/><path d=\"M2.14648 13.75C2.65677 13.5389 3.24193 13.7817 3.45312 14.292C3.45432 14.2949 3.45583 14.2979 3.45703 14.3008C3.6689 14.8107 3.42695 15.3965 2.91699 15.6084C2.40704 15.8202 1.82131 15.5783 1.60938 15.0684C1.6078 15.0646 1.60704 15.0604 1.60547 15.0566C1.39432 14.5463 1.6362 13.9612 2.14648 13.75Z\" fill=\"currentColor\"/><path d=\"M2.00098 10.9941C2.55312 10.9947 3.00035 11.443 3 11.9951V12.0049C3.00035 12.557 2.55312 13.0053 2.00098 13.0059C1.44869 13.0063 1.00043 12.5581 1 12.0059V11.9941C1.00043 11.4419 1.44869 10.9937 2.00098 10.9941Z\" fill=\"currentColor\"/><path d=\"M1.60938 8.93164C1.82131 8.42171 2.40704 8.17978 2.91699 8.3916C3.42695 8.60354 3.6689 9.18925 3.45703 9.69922C3.45583 9.7021 3.45432 9.70512 3.45312 9.70801C3.24193 10.2183 2.65677 10.4611 2.14648 10.25C1.6362 10.0388 1.39432 9.45366 1.60547 8.94336C1.60704 8.93956 1.6078 8.93543 1.60938 8.93164Z\" fill=\"currentColor\"/><path d=\"M3.34766 6.33887C3.73848 5.94865 4.3715 5.94904 4.76172 6.33984C5.15191 6.73064 5.15147 7.36368 4.76074 7.75391C4.75853 7.75612 4.75612 7.75853 4.75391 7.76074C4.36368 8.15147 3.73064 8.15191 3.33984 7.76172C2.94904 7.3715 2.94865 6.73848 3.33887 6.34766C3.34179 6.34472 3.34472 6.34179 3.34766 6.33887Z\" fill=\"currentColor\"/><path d=\"M5.94336 4.60547C6.45366 4.39432 7.03882 4.6362 7.25 5.14648C7.46114 5.65677 7.21826 6.24193 6.70801 6.45312C6.70512 6.45432 6.7021 6.45583 6.69922 6.45703C6.18925 6.6689 5.60354 6.42695 5.3916 5.91699C5.17978 5.40704 5.42171 4.82131 5.93164 4.60938C5.93543 4.6078 5.93956 4.60704 5.94336 4.60547Z\" fill=\"currentColor\"/><path d=\"M9.00586 4C9.55814 4.00043 10.0063 4.44869 10.0059 5.00098C10.0053 5.55312 9.55703 6.00035 9.00488 6H8.99512C8.44297 6.00035 7.99468 5.55312 7.99414 5.00098C7.99372 4.44869 8.44186 4.00043 8.99414 4H9.00586Z\" fill=\"currentColor\"/>",
20754
+ "iconName": "reduce-motion",
20755
+ "variant": {
20756
+ "join": "square",
20757
+ "filled": "on",
20758
+ "radius": "0",
20759
+ "stroke": "2"
20760
+ },
20761
+ "createdAt": "2026-05-19T16:02:19.410611+00:00",
20762
+ "packageName": "square-filled-radius-0-stroke-2",
20763
+ "componentName": "IconReduceMotion"
20764
+ },
20695
20765
  {
20696
20766
  "category": "Communication",
20697
20767
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 22H6.75C5.23122 22 4 20.7688 4 19.25V5C4 3.34315 5.34315 2 7 2H20V22ZM6.75 18.5C6.33579 18.5 6 18.8358 6 19.25C6 19.6642 6.33579 20 6.75 20H18V18.5H6.75ZM6.75 15C6.33579 15 6 15.3358 6 15.75C6 16.1642 6.33579 16.5 6.75 16.5H18V15H6.75ZM8 6V8H16V6H8Z\" fill=\"currentColor\"/>",
@@ -27104,6 +27174,20 @@
27104
27174
  "packageName": "square-filled-radius-0-stroke-2",
27105
27175
  "componentName": "IconVoiceMode"
27106
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 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\"/>",
27180
+ "iconName": "voiceover, sound",
27181
+ "variant": {
27182
+ "join": "square",
27183
+ "filled": "on",
27184
+ "radius": "0",
27185
+ "stroke": "2"
27186
+ },
27187
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
27188
+ "packageName": "square-filled-radius-0-stroke-2",
27189
+ "componentName": "IconVoiceover"
27190
+ },
27107
27191
  {
27108
27192
  "category": "Sound & Music",
27109
27193
  "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 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"
@@ -1477,6 +1481,7 @@ export type CentralIconName =
1477
1481
  | "IconReddit"
1478
1482
  | "IconRedDotAward"
1479
1483
  | "IconRedirectArrow"
1484
+ | "IconReduceMotion"
1480
1485
  | "IconReference"
1481
1486
  | "IconRemix"
1482
1487
  | "IconRemixCircle"
@@ -1935,6 +1940,7 @@ export type CentralIconName =
1935
1940
  | "IconVoiceMemo"
1936
1941
  | "IconVoiceMid"
1937
1942
  | "IconVoiceMode"
1943
+ | "IconVoiceover"
1938
1944
  | "IconVoiceRecord"
1939
1945
  | "IconVoiceSettings"
1940
1946
  | "IconVoiceShare"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
3
- "version": "1.1.240",
3
+ "version": "1.1.242",
4
4
  "style": "square-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-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": 2000,
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": 10,
110
+ "count": 12,
111
111
  "icons": [
112
112
  "IconCircleHalfFill",
113
113
  "IconCirclePerson",
@@ -117,12 +117,14 @@
117
117
  "IconEyeSlash",
118
118
  "IconEyeSlash2",
119
119
  "IconImageAltText",
120
+ "IconReduceMotion",
120
121
  "IconSquareLinesBottom",
121
- "IconVoiceControl"
122
+ "IconVoiceControl",
123
+ "IconVoiceover"
122
124
  ]
123
125
  },
124
126
  "Arrows": {
125
- "count": 136,
127
+ "count": 140,
126
128
  "icons": [
127
129
  "IconArrow",
128
130
  "IconArrowBottomTop",
@@ -219,7 +221,11 @@
219
221
  "IconChevronTop",
220
222
  "IconChevronTopMedium",
221
223
  "IconChevronTopSmall",
224
+ "IconChevronTriangleDownMedium",
222
225
  "IconChevronTriangleDownSmall",
226
+ "IconChevronTriangleLeftMedium",
227
+ "IconChevronTriangleRightMedium",
228
+ "IconChevronTriangleUpMedium",
223
229
  "IconChevronTriangleUpSmall",
224
230
  "IconCollaborationPointerLeft",
225
231
  "IconCollaborationPointerRight",
@@ -2680,8 +2686,12 @@
2680
2686
  "IconChevronTop": "chevron-top",
2681
2687
  "IconChevronTopMedium": "chevron-top-medium",
2682
2688
  "IconChevronTopSmall": "chevron-top-small",
2683
- "IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown",
2684
- "IconChevronTriangleUpSmall": "chevron-triangle-up-small, dropdown",
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",
2685
2695
  "IconChip": "chip, esim",
2686
2696
  "IconChipSimple": "chip-simple, processor",
2687
2697
  "IconChrome": "chrome",
@@ -3679,6 +3689,7 @@
3679
3689
  "IconReddit": "reddit",
3680
3690
  "IconRedDotAward": "red-dot-award",
3681
3691
  "IconRedirectArrow": "redirect-arrow",
3692
+ "IconReduceMotion": "reduce-motion",
3682
3693
  "IconReference": "reference, books, study, library, knowledge",
3683
3694
  "IconRemix": "remix, new-try, repeat",
3684
3695
  "IconRemixCircle": "remix-circle, mix, new-try",
@@ -4137,6 +4148,7 @@
4137
4148
  "IconVoiceMemo": "voice-memo, voice-control",
4138
4149
  "IconVoiceMid": "voice-mid, wave",
4139
4150
  "IconVoiceMode": "voice-mode, voice-settings",
4151
+ "IconVoiceover": "voiceover, sound",
4140
4152
  "IconVoiceRecord": "voice-record",
4141
4153
  "IconVoiceSettings": "voice-settings, edit-voice",
4142
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";
@@ -1476,6 +1480,7 @@ export { IconRecraft, default as IconRecraftDefault } from "./IconRecraft";
1476
1480
  export { IconRedDotAward, default as IconRedDotAwardDefault, } from "./IconRedDotAward";
1477
1481
  export { IconReddit, default as IconRedditDefault } from "./IconReddit";
1478
1482
  export { IconRedirectArrow, default as IconRedirectArrowDefault, } from "./IconRedirectArrow";
1483
+ export { IconReduceMotion, default as IconReduceMotionDefault, } from "./IconReduceMotion";
1479
1484
  export { IconReference, default as IconReferenceDefault, } from "./IconReference";
1480
1485
  export { IconRemix, default as IconRemixDefault } from "./IconRemix";
1481
1486
  export { IconRemixCircle, default as IconRemixCircleDefault, } from "./IconRemixCircle";
@@ -1938,6 +1943,7 @@ export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoice
1938
1943
  export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
1939
1944
  export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
1940
1945
  export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
1946
+ export { IconVoiceover, default as IconVoiceoverDefault, } from "./IconVoiceover";
1941
1947
  export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
1942
1948
  export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
1943
1949
  export { IconVolumeFull, default as IconVolumeFullDefault, } from "./IconVolumeFull";