@central-icons-react-native/square-filled-radius-0-stroke-1 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 16.7744L5.42188 9H18.5781L12 16.7744Z",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 16.7744L5.42188 9H18.5781L12 16.7744Z\" 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 16.7744L5.42188 9H18.5781L12 16.7744Z",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 16.7744L5.42188 9H18.5781L12 16.7744Z\" 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:"M7.22559 12L15 18.5781V5.42188L7.22559 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\n d=\"M7.22559 12L15 18.5781V5.42188L7.22559 12Z\"\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,6CACF,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 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:"M7.22559 12L15 18.5781V5.42188L7.22559 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\n d=\"M7.22559 12L15 18.5781V5.42188L7.22559 12Z\"\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,6CACF,KAAK,eACP,CACF,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:"M16.7744 12L9 18.5781V5.42188L16.7744 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=\"M16.7744 12L9 18.5781V5.42188L16.7744 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:"M16.7744 12L9 18.5781V5.42188L16.7744 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=\"M16.7744 12L9 18.5781V5.42188L16.7744 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 7.22559L5.42188 15H18.5781L12 7.22559Z",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=\"M12 7.22559L5.42188 15H18.5781L12 7.22559Z\"\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,6CACF,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 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 7.22559L5.42188 15H18.5781L12 7.22559Z",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\n d=\"M12 7.22559L5.42188 15H18.5781L12 7.22559Z\"\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,6CACF,KAAK,eACP,CACF,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=(o,l)=>{for(var n in l)t(o,n,{get:l[n],enumerable:!0})},i=(o,l,n,f)=>{if(l&&typeof l=="object"||typeof l=="function")for(let e of s(l))!I.call(o,e)&&e!==n&&t(o,e,{get:()=>l[e],enumerable:!(f=c(l,e))||f.enumerable});return o};var u=(o,l,n)=>(n=o!=null?m(B(o)):{},i(l||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n,o)),x=o=>i(t({},"__esModule",{value:!0}),o);var g={};v(g,{IconReduceMotion:()=>Z,default:()=>P});module.exports=x(g);var C=u(require("react"));var d=u(require("react")),p=require("react-native-svg"),M=({children:o,size:l=24,...n})=>d.default.createElement(p.Svg,{...n,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},o);var r=require("react-native-svg"),Z=o=>C.default.createElement(M,{...o},C.default.createElement(r.Path,{d:"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z",fill:"currentColor"}),C.default.createElement(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z",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 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\"\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.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\"\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,2MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ySACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4qBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sMACF,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 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z",fill:"currentColor"}),C.createElement(r,{d:"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z",fill:"currentColor"}),C.createElement(r,{d:"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z",fill:"currentColor"}),C.createElement(r,{d:"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z",fill:"currentColor"}),C.createElement(r,{d:"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z",fill:"currentColor"}),C.createElement(r,{d:"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z",fill:"currentColor"}),C.createElement(r,{d:"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z",fill:"currentColor"}),C.createElement(r,{d:"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z",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.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z",fill:"currentColor"}),C.createElement(r,{d:"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z",fill:"currentColor"}),C.createElement(r,{d:"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z",fill:"currentColor"}),C.createElement(r,{d:"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z",fill:"currentColor"}),C.createElement(r,{d:"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z",fill:"currentColor"}),C.createElement(r,{d:"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z",fill:"currentColor"}),C.createElement(r,{d:"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z",fill:"currentColor"}),C.createElement(r,{d:"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z",fill:"currentColor"}),C.createElement(r,{d:"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z",fill:"currentColor"}),C.createElement(r,{d:"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z",fill:"currentColor"}),C.createElement(r,{d:"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z",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 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\"\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.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\"\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,2MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ySACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4qBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sMACF,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.9502 9.90039C15.3498 10.9504 15.3498 13.0496 13.9502 14.0996L14.5498 14.9004C16.4831 13.4504 16.4831 10.5496 14.5498 9.09961L13.9502 9.90039Z",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.9502 9.90039C15.3498 10.9504 15.3498 13.0496 13.9502 14.0996L14.5498 14.9004C16.4831 13.4504 16.4831 10.5496 14.5498 9.09961L13.9502 9.90039Z\"\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,mTACF,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.9502 9.90039C15.3498 10.9504 15.3498 13.0496 13.9502 14.0996L14.5498 14.9004C16.4831 13.4504 16.4831 10.5496 14.5498 9.09961L13.9502 9.90039Z",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.9502 9.90039C15.3498 10.9504 15.3498 13.0496 13.9502 14.0996L14.5498 14.9004C16.4831 13.4504 16.4831 10.5496 14.5498 9.09961L13.9502 9.90039Z\"\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,mTACF,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-1",
6707
6707
  "componentName": "IconChevronTopSmall"
6708
6708
  },
6709
+ {
6710
+ "category": "Arrows",
6711
+ "svg": "<path d=\"M12 16.7744L5.42188 9H18.5781L12 16.7744Z\" fill=\"currentColor\"/>",
6712
+ "iconName": "chevron-triangle-down-medium, dropdown, caret",
6713
+ "variant": {
6714
+ "join": "square",
6715
+ "filled": "on",
6716
+ "radius": "0",
6717
+ "stroke": "1"
6718
+ },
6719
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6720
+ "packageName": "square-filled-radius-0-stroke-1",
6721
+ "componentName": "IconChevronTriangleDownMedium"
6722
+ },
6709
6723
  {
6710
6724
  "category": "Arrows",
6711
6725
  "svg": "<path d=\"M7.91309 10.5L12.0002 15.2683L16.0873 10.5H7.91309Z\" 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-1",
6721
6735
  "componentName": "IconChevronTriangleDownSmall"
6722
6736
  },
6737
+ {
6738
+ "category": "Arrows",
6739
+ "svg": "<path d=\"M7.22559 12L15 18.5781V5.42188L7.22559 12Z\" fill=\"currentColor\"/>",
6740
+ "iconName": "chevron-triangle-left-medium, dropdown, caret",
6741
+ "variant": {
6742
+ "join": "square",
6743
+ "filled": "on",
6744
+ "radius": "0",
6745
+ "stroke": "1"
6746
+ },
6747
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6748
+ "packageName": "square-filled-radius-0-stroke-1",
6749
+ "componentName": "IconChevronTriangleLeftMedium"
6750
+ },
6751
+ {
6752
+ "category": "Arrows",
6753
+ "svg": "<path d=\"M16.7744 12L9 18.5781V5.42188L16.7744 12Z\" fill=\"currentColor\"/>",
6754
+ "iconName": "chevron-triangle-right-medium, dropdown, caret",
6755
+ "variant": {
6756
+ "join": "square",
6757
+ "filled": "on",
6758
+ "radius": "0",
6759
+ "stroke": "1"
6760
+ },
6761
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6762
+ "packageName": "square-filled-radius-0-stroke-1",
6763
+ "componentName": "IconChevronTriangleRightMedium"
6764
+ },
6765
+ {
6766
+ "category": "Arrows",
6767
+ "svg": "<path d=\"M12 7.22559L5.42188 15H18.5781L12 7.22559Z\" fill=\"currentColor\"/>",
6768
+ "iconName": "chevron-triangle-up-medium, dropdown, caret",
6769
+ "variant": {
6770
+ "join": "square",
6771
+ "filled": "on",
6772
+ "radius": "0",
6773
+ "stroke": "1"
6774
+ },
6775
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6776
+ "packageName": "square-filled-radius-0-stroke-1",
6777
+ "componentName": "IconChevronTriangleUpMedium"
6778
+ },
6723
6779
  {
6724
6780
  "category": "Arrows",
6725
6781
  "svg": "<path d=\"M7.91309 13.4997L12.0002 8.73145L16.0873 13.4997H7.91309Z\" 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-1",
20693
20749
  "componentName": "IconRedirectArrow"
20694
20750
  },
20751
+ {
20752
+ "category": "Accessibility",
20753
+ "svg": "<path d=\"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\" fill=\"currentColor\"/><path d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\" fill=\"currentColor\"/><path d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\" fill=\"currentColor\"/><path d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\" fill=\"currentColor\"/><path d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\" fill=\"currentColor\"/><path d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\" fill=\"currentColor\"/><path d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\" fill=\"currentColor\"/><path d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\" 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.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\" fill=\"currentColor\"/><path d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\" fill=\"currentColor\"/><path d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\" fill=\"currentColor\"/><path d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\" fill=\"currentColor\"/><path d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\" fill=\"currentColor\"/><path d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\" fill=\"currentColor\"/><path d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\" fill=\"currentColor\"/><path d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\" fill=\"currentColor\"/><path d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\" fill=\"currentColor\"/><path d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\" fill=\"currentColor\"/><path d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\" fill=\"currentColor\"/>",
20754
+ "iconName": "reduce-motion",
20755
+ "variant": {
20756
+ "join": "square",
20757
+ "filled": "on",
20758
+ "radius": "0",
20759
+ "stroke": "1"
20760
+ },
20761
+ "createdAt": "2026-05-19T16:02:19.410611+00:00",
20762
+ "packageName": "square-filled-radius-0-stroke-1",
20763
+ "componentName": "IconReduceMotion"
20764
+ },
20695
20765
  {
20696
20766
  "category": "Communication",
20697
20767
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H20V22ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8 6V7H16V6H8Z\" fill=\"currentColor\"/>",
@@ -27104,6 +27174,20 @@
27104
27174
  "packageName": "square-filled-radius-0-stroke-1",
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.9502 9.90039C15.3498 10.9504 15.3498 13.0496 13.9502 14.0996L14.5498 14.9004C16.4831 13.4504 16.4831 10.5496 14.5498 9.09961L13.9502 9.90039Z\" fill=\"currentColor\"/>",
27180
+ "iconName": "voiceover, sound",
27181
+ "variant": {
27182
+ "join": "square",
27183
+ "filled": "on",
27184
+ "radius": "0",
27185
+ "stroke": "1"
27186
+ },
27187
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
27188
+ "packageName": "square-filled-radius-0-stroke-1",
27189
+ "componentName": "IconVoiceover"
27190
+ },
27107
27191
  {
27108
27192
  "category": "Sound & Music",
27109
27193
  "svg": "<path d=\"M6 3V17H5V3H6Z\" fill=\"currentColor\"/><path d=\"M12 4V10H11V4H12Z\" fill=\"currentColor\"/><path d=\"M9 6V14H8V6H9Z\" fill=\"currentColor\"/><path d=\"M3 8V12H2V8H3Z\" fill=\"currentColor\"/><path d=\"M16.5 19C18.433 19 20 17.433 20 15.5C20 13.567 18.433 12 16.5 12C14.567 12 13 13.567 13 15.5C13 17.433 14.567 19 16.5 19Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 15.5C11 12.4624 13.4624 10 16.5 10C19.5376 10 22 12.4624 22 15.5C22 18.5376 19.5376 21 16.5 21C13.4624 21 11 18.5376 11 15.5ZM16.5 11C14.0147 11 12 13.0147 12 15.5C12 17.9853 14.0147 20 16.5 20C18.9853 20 21 17.9853 21 15.5C21 13.0147 18.9853 11 16.5 11Z\" 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-1",
3
- "version": "1.1.240",
3
+ "version": "1.1.242",
4
4
  "style": "square-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1/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";