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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) 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/IconPiggyBank/index.js +1 -1
  22. package/IconPiggyBank/index.js.map +1 -1
  23. package/IconPiggyBank/index.mjs +1 -1
  24. package/IconPiggyBank/index.mjs.map +1 -1
  25. package/IconVoiceover/index.d.ts +4 -0
  26. package/IconVoiceover/index.js +2 -0
  27. package/IconVoiceover/index.js.map +1 -0
  28. package/IconVoiceover/index.mjs +2 -0
  29. package/IconVoiceover/index.mjs.map +1 -0
  30. package/README.md +5 -0
  31. package/filtered-icons.json +73 -3
  32. package/icons/index.d.ts +5 -0
  33. package/icons-index.json +17 -7
  34. package/index.d.ts +5 -0
  35. package/index.js +1 -1
  36. package/index.js.map +1 -1
  37. package/index.mjs +1 -1
  38. package/index.mjs.map +1 -1
  39. package/license-check.js +1 -1
  40. package/package.json +1 -1
  41. package/skills/central-icons-react-native/SKILL.md +8 -3
  42. package/tsx-icons.json +38 -3
@@ -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 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})},m=(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 s=(r,o,e)=>(e=r!=null?u(g(r)):{},m(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>m(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleDownMedium:()=>i,default:()=>v});module.exports=h(d);var p=s(require("react"));var C=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.default.createElement(l.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 10H7L12 16L17 10Z",stroke:"currentColor",strokeWidth:"2"})),v=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=\"M17 10H7L12 16L17 10Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,wBAAwB,OAAO,eAAe,YAAY,IAAI,CACxE,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 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 m}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(m,{d:"M17 10H7L12 16L17 10Z",stroke:"currentColor",strokeWidth:"2"})),x=s;export{s 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=\"M17 10H7L12 16L17 10Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,wBAAwB,OAAO,eAAe,YAAY,IAAI,CACxE,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})},m=(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 s=(r,o,e)=>(e=r!=null?u(g(r)):{},m(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>m(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleLeftMedium:()=>i,default:()=>v});module.exports=h(d);var p=s(require("react"));var C=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.default.createElement(l.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:"M14 7V17L8 12L14 7Z",stroke:"currentColor",strokeWidth:"2"})),v=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=\"M14 7V17L8 12L14 7Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,sBAAsB,OAAO,eAAe,YAAY,IAAI,CACtE,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 m}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(m,{d:"M14 7V17L8 12L14 7Z",stroke:"currentColor",strokeWidth:"2"})),x=s;export{s 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=\"M14 7V17L8 12L14 7Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,sBAAsB,OAAO,eAAe,YAAY,IAAI,CACtE,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,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},m=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!h.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=u(o,e))||a.enumerable});return r};var s=(r,o,t)=>(t=r!=null?g(I(r)):{},m(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>m(n({},"__esModule",{value:!0}),r);var d={};x(d,{IconChevronTriangleRightMedium:()=>f,default:()=>v});module.exports=P(d);var p=s(require("react"));var C=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>C.default.createElement(l.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var i=require("react-native-svg"),f=r=>p.default.createElement(c,{...r},p.default.createElement(i.Path,{d:"M10 7V17L16 12L10 7Z",stroke:"currentColor",strokeWidth:"2"})),v=f;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=\"M10 7V17L16 12L10 7Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,uBAAuB,OAAO,eAAe,YAAY,IAAI,CACvE,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 e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({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 m}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(m,{d:"M10 7V17L16 12L10 7Z",stroke:"currentColor",strokeWidth:"2"})),h=s;export{s as IconChevronTriangleRightMedium,h 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=\"M10 7V17L16 12L10 7Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,uBAAuB,OAAO,eAAe,YAAY,IAAI,CACvE,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})},m=(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 s=(r,o,e)=>(e=r!=null?u(g(r)):{},m(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>m(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleUpMedium:()=>i,default:()=>v});module.exports=h(d);var p=s(require("react"));var C=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>C.default.createElement(l.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 14H7L12 8L17 14Z",stroke:"currentColor",strokeWidth:"2"})),v=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=\"M17 14H7L12 8L17 14Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,uBAAuB,OAAO,eAAe,YAAY,IAAI,CACvE,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 m}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(m,{d:"M17 14H7L12 8L17 14Z",stroke:"currentColor",strokeWidth:"2"})),x=s;export{s 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=\"M17 14H7L12 8L17 14Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,uBAAuB,OAAO,eAAe,YAAY,IAAI,CACvE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var l=Object.create;var o=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var u=(C,H)=>{for(var V in H)o(C,V,{get:H[V],enumerable:!0})},e=(C,H,V,t)=>{if(H&&typeof H=="object"||typeof H=="function")for(let r of c(H))!i.call(C,r)&&r!==V&&o(C,r,{get:()=>H[r],enumerable:!(t=m(H,r))||t.enumerable});return C};var n=(C,H,V)=>(V=C!=null?l(f(C)):{},e(H||!C||!C.__esModule?o(V,"default",{value:C,enumerable:!0}):V,C)),B=C=>e(o({},"__esModule",{value:!0}),C);var I={};u(I,{IconPiggyBank:()=>s,default:()=>g});module.exports=B(I);var M=n(require("react"));var L=n(require("react")),p=require("react-native-svg"),a=({children:C,size:H=24,...V})=>L.default.createElement(p.Svg,{...V,width:typeof H=="number"?`${H}px`:H,height:typeof H=="number"?`${H}px`:H,viewBox:"0 0 24 24",fill:"none"},C);var Z=require("react-native-svg"),s=C=>M.default.createElement(a,{...C},M.default.createElement(Z.Path,{d:"M5.5 4V3H4.5V4H5.5ZM5.5 7.5L6.16999 8.24237L6.5 7.94453V7.5H5.5ZM4 9.93505V10.935H4.69926L4.93926 10.2783L4 9.93505ZM2 9.93505V8.93505H1V9.93505H2ZM2 15H1V16H2V15ZM4 15L4.86571 14.4995L4.57693 14H4V15ZM6 17H7V16.4248L6.5028 16.1356L6 17ZM6 20H5V21H6V20ZM10 20V21H11V20H10ZM10 18V17H9V18H10ZM14 18H15V17H14V18ZM14 20H13V21H14V20ZM18 20V21H19V20H18ZM18 16.463L17.3322 15.7187L17 16.0167V16.463H18ZM9.474 6.00004L8.57494 6.43788L8.84871 7.00004H9.474V6.00004ZM23.597 11.4993L23.0963 10.6337L21.3651 11.6352L21.8658 12.5008L23.597 11.4993ZM20.4174 13.8137C19.9686 13.4918 19.3439 13.5947 19.022 14.0435C18.7001 14.4923 18.8029 15.117 19.2517 15.4389L20.4174 13.8137ZM4.5 4V7.5H6.5V4H4.5ZM4.83001 6.75763C3.93677 7.56378 3.42253 8.60172 3.06074 9.59184L4.93926 10.2783C5.25347 9.41837 5.62723 8.73222 6.16999 8.24237L4.83001 6.75763ZM4 8.93505H2V10.935H4V8.93505ZM1 9.93505V15H3V9.93505H1ZM2 16H4V14H2V16ZM3.13429 15.5006C3.74794 16.5619 4.44311 17.2513 5.4972 17.8644L6.5028 16.1356C5.74489 15.6947 5.30206 15.2542 4.86571 14.4995L3.13429 15.5006ZM5 17V20H7V17H5ZM6 21H10V19H6V21ZM11 20V18H9V20H11ZM10 19H14V17H10V19ZM13 18V20H15V18H13ZM14 21H18V19H14V21ZM19 20V16.463H17V20H19ZM18.6678 17.2074C20.0931 15.9287 21 14.0737 21 12H19C19 13.4763 18.3569 14.7994 17.3322 15.7187L18.6678 17.2074ZM21 12C21 8.13371 17.8663 5.00004 14 5.00004V7.00004C16.7617 7.00004 19 9.23829 19 12H21ZM14 5.00004H9.474V7.00004H14V5.00004ZM9.474 6.00004C10.3731 5.56221 10.3728 5.56167 10.3725 5.56113C10.3724 5.56093 10.3722 5.56038 10.372 5.55999C10.3716 5.55922 10.3712 5.55841 10.3708 5.55757C10.37 5.5559 10.3691 5.5541 10.3681 5.55217C10.3662 5.54832 10.364 5.54398 10.3615 5.53915C10.3566 5.52949 10.3505 5.51789 10.3433 5.50449C10.329 5.4777 10.3099 5.44362 10.286 5.40333C10.2382 5.32282 10.1703 5.21689 10.0799 5.09426C9.89951 4.84944 9.62653 4.53429 9.24068 4.22236C8.45581 3.58785 7.24328 3 5.5 3V5C6.75672 5 7.53119 5.41217 7.98332 5.77768C8.21597 5.96576 8.37399 6.15062 8.46994 6.28081C8.51775 6.34568 8.54942 6.39601 8.56658 6.42489C8.57513 6.43928 8.57997 6.44817 8.58132 6.45068C8.58199 6.45192 8.58177 6.45156 8.58071 6.44947C8.58017 6.44842 8.57942 6.44694 8.57846 6.44502C8.57798 6.44405 8.57745 6.44298 8.57686 6.44179C8.57657 6.44119 8.57626 6.44057 8.57594 6.43992C8.57578 6.43959 8.57553 6.43908 8.57545 6.43892C8.5752 6.4384 8.57494 6.43788 9.474 6.00004ZM21.999 13C21.999 13.5523 21.5512 14 20.999 14V16C22.6558 16 23.999 14.6569 23.999 13H21.999ZM21.8658 12.5008C21.9503 12.6468 21.999 12.8162 21.999 13H23.999C23.999 12.4553 23.8528 11.9416 23.597 11.4993L21.8658 12.5008ZM20.999 14C20.7805 14 20.5811 13.9311 20.4174 13.8137L19.2517 15.4389C19.7439 15.792 20.3486 16 20.999 16V14Z",fill:"currentColor"}),M.default.createElement(Z.Path,{d:"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),g=s;0&&(module.exports={IconPiggyBank});
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!d.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(s=H(o,e))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?u(V(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var M={};B(M,{IconPiggyBank:()=>i,default:()=>I});module.exports=g(M);var n=l(require("react"));var m=l(require("react")),L=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(L.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M5.5 7.5V4C8.5 4 9.474 6.00004 9.474 6.00004H14C17.314 6.00004 20 8.686 20 12C20 13.775 19.225 15.364 18 16.463V20H14V18H10V20H6V17C5.094 16.473 4.525 15.908 4 15H2V9.93505H4C4.338 9.01005 4.782 8.148 5.5 7.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(p.Path,{d:"M23.5984 11.4993L23.0977 10.6337L21.3664 11.6351L21.8672 12.5007L22.7328 12L23.5984 11.4993ZM20.4188 13.8137C19.97 13.4918 19.3452 13.5947 19.0234 14.0434C18.7015 14.4922 18.8043 15.117 19.2531 15.4389L19.8359 14.6263L20.4188 13.8137ZM22.7328 12L21.8672 12.5007C21.9517 12.6468 22.0003 12.8162 22.0003 13H23.0003H24.0003C24.0003 12.4552 23.8542 11.9416 23.5984 11.4993L22.7328 12ZM23.0003 13H22.0003C22.0003 13.5523 21.5526 14 21.0003 14V15V16C22.6572 16 24.0003 14.6569 24.0003 13H23.0003ZM21.0003 15V14C20.7819 14 20.5825 13.9311 20.4188 13.8137L19.8359 14.6263L19.2531 15.4389C19.7453 15.7919 20.35 16 21.0003 16V15Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),I=i;0&&(module.exports={IconPiggyBank});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPiggyBank/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 IconPiggyBank: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.5 4V3H4.5V4H5.5ZM5.5 7.5L6.16999 8.24237L6.5 7.94453V7.5H5.5ZM4 9.93505V10.935H4.69926L4.93926 10.2783L4 9.93505ZM2 9.93505V8.93505H1V9.93505H2ZM2 15H1V16H2V15ZM4 15L4.86571 14.4995L4.57693 14H4V15ZM6 17H7V16.4248L6.5028 16.1356L6 17ZM6 20H5V21H6V20ZM10 20V21H11V20H10ZM10 18V17H9V18H10ZM14 18H15V17H14V18ZM14 20H13V21H14V20ZM18 20V21H19V20H18ZM18 16.463L17.3322 15.7187L17 16.0167V16.463H18ZM9.474 6.00004L8.57494 6.43788L8.84871 7.00004H9.474V6.00004ZM23.597 11.4993L23.0963 10.6337L21.3651 11.6352L21.8658 12.5008L23.597 11.4993ZM20.4174 13.8137C19.9686 13.4918 19.3439 13.5947 19.022 14.0435C18.7001 14.4923 18.8029 15.117 19.2517 15.4389L20.4174 13.8137ZM4.5 4V7.5H6.5V4H4.5ZM4.83001 6.75763C3.93677 7.56378 3.42253 8.60172 3.06074 9.59184L4.93926 10.2783C5.25347 9.41837 5.62723 8.73222 6.16999 8.24237L4.83001 6.75763ZM4 8.93505H2V10.935H4V8.93505ZM1 9.93505V15H3V9.93505H1ZM2 16H4V14H2V16ZM3.13429 15.5006C3.74794 16.5619 4.44311 17.2513 5.4972 17.8644L6.5028 16.1356C5.74489 15.6947 5.30206 15.2542 4.86571 14.4995L3.13429 15.5006ZM5 17V20H7V17H5ZM6 21H10V19H6V21ZM11 20V18H9V20H11ZM10 19H14V17H10V19ZM13 18V20H15V18H13ZM14 21H18V19H14V21ZM19 20V16.463H17V20H19ZM18.6678 17.2074C20.0931 15.9287 21 14.0737 21 12H19C19 13.4763 18.3569 14.7994 17.3322 15.7187L18.6678 17.2074ZM21 12C21 8.13371 17.8663 5.00004 14 5.00004V7.00004C16.7617 7.00004 19 9.23829 19 12H21ZM14 5.00004H9.474V7.00004H14V5.00004ZM9.474 6.00004C10.3731 5.56221 10.3728 5.56167 10.3725 5.56113C10.3724 5.56093 10.3722 5.56038 10.372 5.55999C10.3716 5.55922 10.3712 5.55841 10.3708 5.55757C10.37 5.5559 10.3691 5.5541 10.3681 5.55217C10.3662 5.54832 10.364 5.54398 10.3615 5.53915C10.3566 5.52949 10.3505 5.51789 10.3433 5.50449C10.329 5.4777 10.3099 5.44362 10.286 5.40333C10.2382 5.32282 10.1703 5.21689 10.0799 5.09426C9.89951 4.84944 9.62653 4.53429 9.24068 4.22236C8.45581 3.58785 7.24328 3 5.5 3V5C6.75672 5 7.53119 5.41217 7.98332 5.77768C8.21597 5.96576 8.37399 6.15062 8.46994 6.28081C8.51775 6.34568 8.54942 6.39601 8.56658 6.42489C8.57513 6.43928 8.57997 6.44817 8.58132 6.45068C8.58199 6.45192 8.58177 6.45156 8.58071 6.44947C8.58017 6.44842 8.57942 6.44694 8.57846 6.44502C8.57798 6.44405 8.57745 6.44298 8.57686 6.44179C8.57657 6.44119 8.57626 6.44057 8.57594 6.43992C8.57578 6.43959 8.57553 6.43908 8.57545 6.43892C8.5752 6.4384 8.57494 6.43788 9.474 6.00004ZM21.999 13C21.999 13.5523 21.5512 14 20.999 14V16C22.6558 16 23.999 14.6569 23.999 13H21.999ZM21.8658 12.5008C21.9503 12.6468 21.999 12.8162 21.999 13H23.999C23.999 12.4553 23.8528 11.9416 23.597 11.4993L21.8658 12.5008ZM20.999 14C20.7805 14 20.5811 13.9311 20.4174 13.8137L19.2517 15.4389C19.7439 15.792 20.3486 16 20.999 16V14Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBank;\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,EAAE,8nFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconPiggyBank_exports","__export","IconPiggyBank","IconPiggyBank_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPiggyBank","props","React","CentralIconBase","IconPiggyBank_default"]}
1
+ {"version":3,"sources":["../src/IconPiggyBank/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 IconPiggyBank: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.5 7.5V4C8.5 4 9.474 6.00004 9.474 6.00004H14C17.314 6.00004 20 8.686 20 12C20 13.775 19.225 15.364 18 16.463V20H14V18H10V20H6V17C5.094 16.473 4.525 15.908 4 15H2V9.93505H4C4.338 9.01005 4.782 8.148 5.5 7.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M23.5984 11.4993L23.0977 10.6337L21.3664 11.6351L21.8672 12.5007L22.7328 12L23.5984 11.4993ZM20.4188 13.8137C19.97 13.4918 19.3452 13.5947 19.0234 14.0434C18.7015 14.4922 18.8043 15.117 19.2531 15.4389L19.8359 14.6263L20.4188 13.8137ZM22.7328 12L21.8672 12.5007C21.9517 12.6468 22.0003 12.8162 22.0003 13H23.0003H24.0003C24.0003 12.4552 23.8542 11.9416 23.5984 11.4993L22.7328 12ZM23.0003 13H22.0003C22.0003 13.5523 21.5526 14 21.0003 14V15V16C22.6572 16 24.0003 14.6569 24.0003 13H23.0003ZM21.0003 15V14C20.7819 14 20.5825 13.9311 20.4188 13.8137L19.8359 14.6263L19.2531 15.4389C19.7453 15.7919 20.35 16 21.0003 16V15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBank;\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,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8mBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconPiggyBank_exports","__export","IconPiggyBank","IconPiggyBank_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPiggyBank","props","React","CentralIconBase","IconPiggyBank_default"]}
@@ -1,2 +1,2 @@
1
- import V from"react";import Z from"react";import{Svg as t}from"react-native-svg";var r=({children:H,size:C=24,...M})=>Z.createElement(t,{...M,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},H);import{Path as o}from"react-native-svg";var e=H=>V.createElement(r,{...H},V.createElement(o,{d:"M5.5 4V3H4.5V4H5.5ZM5.5 7.5L6.16999 8.24237L6.5 7.94453V7.5H5.5ZM4 9.93505V10.935H4.69926L4.93926 10.2783L4 9.93505ZM2 9.93505V8.93505H1V9.93505H2ZM2 15H1V16H2V15ZM4 15L4.86571 14.4995L4.57693 14H4V15ZM6 17H7V16.4248L6.5028 16.1356L6 17ZM6 20H5V21H6V20ZM10 20V21H11V20H10ZM10 18V17H9V18H10ZM14 18H15V17H14V18ZM14 20H13V21H14V20ZM18 20V21H19V20H18ZM18 16.463L17.3322 15.7187L17 16.0167V16.463H18ZM9.474 6.00004L8.57494 6.43788L8.84871 7.00004H9.474V6.00004ZM23.597 11.4993L23.0963 10.6337L21.3651 11.6352L21.8658 12.5008L23.597 11.4993ZM20.4174 13.8137C19.9686 13.4918 19.3439 13.5947 19.022 14.0435C18.7001 14.4923 18.8029 15.117 19.2517 15.4389L20.4174 13.8137ZM4.5 4V7.5H6.5V4H4.5ZM4.83001 6.75763C3.93677 7.56378 3.42253 8.60172 3.06074 9.59184L4.93926 10.2783C5.25347 9.41837 5.62723 8.73222 6.16999 8.24237L4.83001 6.75763ZM4 8.93505H2V10.935H4V8.93505ZM1 9.93505V15H3V9.93505H1ZM2 16H4V14H2V16ZM3.13429 15.5006C3.74794 16.5619 4.44311 17.2513 5.4972 17.8644L6.5028 16.1356C5.74489 15.6947 5.30206 15.2542 4.86571 14.4995L3.13429 15.5006ZM5 17V20H7V17H5ZM6 21H10V19H6V21ZM11 20V18H9V20H11ZM10 19H14V17H10V19ZM13 18V20H15V18H13ZM14 21H18V19H14V21ZM19 20V16.463H17V20H19ZM18.6678 17.2074C20.0931 15.9287 21 14.0737 21 12H19C19 13.4763 18.3569 14.7994 17.3322 15.7187L18.6678 17.2074ZM21 12C21 8.13371 17.8663 5.00004 14 5.00004V7.00004C16.7617 7.00004 19 9.23829 19 12H21ZM14 5.00004H9.474V7.00004H14V5.00004ZM9.474 6.00004C10.3731 5.56221 10.3728 5.56167 10.3725 5.56113C10.3724 5.56093 10.3722 5.56038 10.372 5.55999C10.3716 5.55922 10.3712 5.55841 10.3708 5.55757C10.37 5.5559 10.3691 5.5541 10.3681 5.55217C10.3662 5.54832 10.364 5.54398 10.3615 5.53915C10.3566 5.52949 10.3505 5.51789 10.3433 5.50449C10.329 5.4777 10.3099 5.44362 10.286 5.40333C10.2382 5.32282 10.1703 5.21689 10.0799 5.09426C9.89951 4.84944 9.62653 4.53429 9.24068 4.22236C8.45581 3.58785 7.24328 3 5.5 3V5C6.75672 5 7.53119 5.41217 7.98332 5.77768C8.21597 5.96576 8.37399 6.15062 8.46994 6.28081C8.51775 6.34568 8.54942 6.39601 8.56658 6.42489C8.57513 6.43928 8.57997 6.44817 8.58132 6.45068C8.58199 6.45192 8.58177 6.45156 8.58071 6.44947C8.58017 6.44842 8.57942 6.44694 8.57846 6.44502C8.57798 6.44405 8.57745 6.44298 8.57686 6.44179C8.57657 6.44119 8.57626 6.44057 8.57594 6.43992C8.57578 6.43959 8.57553 6.43908 8.57545 6.43892C8.5752 6.4384 8.57494 6.43788 9.474 6.00004ZM21.999 13C21.999 13.5523 21.5512 14 20.999 14V16C22.6558 16 23.999 14.6569 23.999 13H21.999ZM21.8658 12.5008C21.9503 12.6468 21.999 12.8162 21.999 13H23.999C23.999 12.4553 23.8528 11.9416 23.597 11.4993L21.8658 12.5008ZM20.999 14C20.7805 14 20.5811 13.9311 20.4174 13.8137L19.2517 15.4389C19.7439 15.792 20.3486 16 20.999 16V14Z",fill:"currentColor"}),V.createElement(o,{d:"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),i=e;export{e as IconPiggyBank,i as default};
1
+ import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M5.5 7.5V4C8.5 4 9.474 6.00004 9.474 6.00004H14C17.314 6.00004 20 8.686 20 12C20 13.775 19.225 15.364 18 16.463V20H14V18H10V20H6V17C5.094 16.473 4.525 15.908 4 15H2V9.93505H4C4.338 9.01005 4.782 8.148 5.5 7.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M23.5984 11.4993L23.0977 10.6337L21.3664 11.6351L21.8672 12.5007L22.7328 12L23.5984 11.4993ZM20.4188 13.8137C19.97 13.4918 19.3452 13.5947 19.0234 14.0434C18.7015 14.4922 18.8043 15.117 19.2531 15.4389L19.8359 14.6263L20.4188 13.8137ZM22.7328 12L21.8672 12.5007C21.9517 12.6468 22.0003 12.8162 22.0003 13H23.0003H24.0003C24.0003 12.4552 23.8542 11.9416 23.5984 11.4993L22.7328 12ZM23.0003 13H22.0003C22.0003 13.5523 21.5526 14 21.0003 14V15V16C22.6572 16 24.0003 14.6569 24.0003 13H23.0003ZM21.0003 15V14C20.7819 14 20.5825 13.9311 20.4188 13.8137L19.8359 14.6263L19.2531 15.4389C19.7453 15.7919 20.35 16 21.0003 16V15Z",fill:"currentColor"}),o.createElement(e,{d:"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),d=a;export{a as IconPiggyBank,d as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPiggyBank/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 IconPiggyBank: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.5 4V3H4.5V4H5.5ZM5.5 7.5L6.16999 8.24237L6.5 7.94453V7.5H5.5ZM4 9.93505V10.935H4.69926L4.93926 10.2783L4 9.93505ZM2 9.93505V8.93505H1V9.93505H2ZM2 15H1V16H2V15ZM4 15L4.86571 14.4995L4.57693 14H4V15ZM6 17H7V16.4248L6.5028 16.1356L6 17ZM6 20H5V21H6V20ZM10 20V21H11V20H10ZM10 18V17H9V18H10ZM14 18H15V17H14V18ZM14 20H13V21H14V20ZM18 20V21H19V20H18ZM18 16.463L17.3322 15.7187L17 16.0167V16.463H18ZM9.474 6.00004L8.57494 6.43788L8.84871 7.00004H9.474V6.00004ZM23.597 11.4993L23.0963 10.6337L21.3651 11.6352L21.8658 12.5008L23.597 11.4993ZM20.4174 13.8137C19.9686 13.4918 19.3439 13.5947 19.022 14.0435C18.7001 14.4923 18.8029 15.117 19.2517 15.4389L20.4174 13.8137ZM4.5 4V7.5H6.5V4H4.5ZM4.83001 6.75763C3.93677 7.56378 3.42253 8.60172 3.06074 9.59184L4.93926 10.2783C5.25347 9.41837 5.62723 8.73222 6.16999 8.24237L4.83001 6.75763ZM4 8.93505H2V10.935H4V8.93505ZM1 9.93505V15H3V9.93505H1ZM2 16H4V14H2V16ZM3.13429 15.5006C3.74794 16.5619 4.44311 17.2513 5.4972 17.8644L6.5028 16.1356C5.74489 15.6947 5.30206 15.2542 4.86571 14.4995L3.13429 15.5006ZM5 17V20H7V17H5ZM6 21H10V19H6V21ZM11 20V18H9V20H11ZM10 19H14V17H10V19ZM13 18V20H15V18H13ZM14 21H18V19H14V21ZM19 20V16.463H17V20H19ZM18.6678 17.2074C20.0931 15.9287 21 14.0737 21 12H19C19 13.4763 18.3569 14.7994 17.3322 15.7187L18.6678 17.2074ZM21 12C21 8.13371 17.8663 5.00004 14 5.00004V7.00004C16.7617 7.00004 19 9.23829 19 12H21ZM14 5.00004H9.474V7.00004H14V5.00004ZM9.474 6.00004C10.3731 5.56221 10.3728 5.56167 10.3725 5.56113C10.3724 5.56093 10.3722 5.56038 10.372 5.55999C10.3716 5.55922 10.3712 5.55841 10.3708 5.55757C10.37 5.5559 10.3691 5.5541 10.3681 5.55217C10.3662 5.54832 10.364 5.54398 10.3615 5.53915C10.3566 5.52949 10.3505 5.51789 10.3433 5.50449C10.329 5.4777 10.3099 5.44362 10.286 5.40333C10.2382 5.32282 10.1703 5.21689 10.0799 5.09426C9.89951 4.84944 9.62653 4.53429 9.24068 4.22236C8.45581 3.58785 7.24328 3 5.5 3V5C6.75672 5 7.53119 5.41217 7.98332 5.77768C8.21597 5.96576 8.37399 6.15062 8.46994 6.28081C8.51775 6.34568 8.54942 6.39601 8.56658 6.42489C8.57513 6.43928 8.57997 6.44817 8.58132 6.45068C8.58199 6.45192 8.58177 6.45156 8.58071 6.44947C8.58017 6.44842 8.57942 6.44694 8.57846 6.44502C8.57798 6.44405 8.57745 6.44298 8.57686 6.44179C8.57657 6.44119 8.57626 6.44057 8.57594 6.43992C8.57578 6.43959 8.57553 6.43908 8.57545 6.43892C8.5752 6.4384 8.57494 6.43788 9.474 6.00004ZM21.999 13C21.999 13.5523 21.5512 14 20.999 14V16C22.6558 16 23.999 14.6569 23.999 13H21.999ZM21.8658 12.5008C21.9503 12.6468 21.999 12.8162 21.999 13H23.999C23.999 12.4553 23.8528 11.9416 23.597 11.4993L21.8658 12.5008ZM20.999 14C20.7805 14 20.5811 13.9311 20.4174 13.8137L19.2517 15.4389C19.7439 15.792 20.3486 16 20.999 16V14Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBank;\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,EAAE,8nFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPiggyBank","props","React","CentralIconBase","IconPiggyBank_default"]}
1
+ {"version":3,"sources":["../src/IconPiggyBank/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 IconPiggyBank: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.5 7.5V4C8.5 4 9.474 6.00004 9.474 6.00004H14C17.314 6.00004 20 8.686 20 12C20 13.775 19.225 15.364 18 16.463V20H14V18H10V20H6V17C5.094 16.473 4.525 15.908 4 15H2V9.93505H4C4.338 9.01005 4.782 8.148 5.5 7.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M23.5984 11.4993L23.0977 10.6337L21.3664 11.6351L21.8672 12.5007L22.7328 12L23.5984 11.4993ZM20.4188 13.8137C19.97 13.4918 19.3452 13.5947 19.0234 14.0434C18.7015 14.4922 18.8043 15.117 19.2531 15.4389L19.8359 14.6263L20.4188 13.8137ZM22.7328 12L21.8672 12.5007C21.9517 12.6468 22.0003 12.8162 22.0003 13H23.0003H24.0003C24.0003 12.4552 23.8542 11.9416 23.5984 11.4993L22.7328 12ZM23.0003 13H22.0003C22.0003 13.5523 21.5526 14 21.0003 14V15V16C22.6572 16 24.0003 14.6569 24.0003 13H23.0003ZM21.0003 15V14C20.7819 14 20.5825 13.9311 20.4188 13.8137L19.8359 14.6263L19.2531 15.4389C19.7453 15.7919 20.35 16 21.0003 16V15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBank;\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,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8mBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPiggyBank","props","React","CentralIconBase","IconPiggyBank_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 l=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!P.call(r,e)&&e!==t&&l(r,e,{get:()=>o[e],enumerable:!(s=x(o,e))||s.enumerable});return r};var c=(r,o,t)=>(t=r!=null?u(I(r)):{},C(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>C(l({},"__esModule",{value:!0}),r);var v={};d(v,{IconVoiceover:()=>f,default:()=>h});module.exports=g(v);var n=c(require("react"));var a=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...t})=>a.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),f=r=>n.default.createElement(i,{...r},n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Path,{d:"M8 14.5V9.5H10L11.5 7.5H13V16.5H11.5L10 14.5H8Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M14.5 14.5C16.1667 13.25 16.1667 10.75 14.5 9.5",stroke:"currentColor",strokeWidth:"2"})),h=f;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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M8 14.5V9.5H10L11.5 7.5H13V16.5H11.5L10 14.5H8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.5 14.5C16.1667 13.25 16.1667 10.75 14.5 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,EAA6B,4BAEhBC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,kDACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kDACF,OAAO,eACP,YAAY,IACd,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 o from"react";import l from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:r=24,...p})=>l.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as C,Path as n}from"react-native-svg";var c=t=>o.createElement(e,{...t},o.createElement(C,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{d:"M8 14.5V9.5H10L11.5 7.5H13V16.5H11.5L10 14.5H8Z",fill:"currentColor"}),o.createElement(n,{d:"M14.5 14.5C16.1667 13.25 16.1667 10.75 14.5 9.5",stroke:"currentColor",strokeWidth:"2"})),d=c;export{c 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M8 14.5V9.5H10L11.5 7.5H13V16.5H11.5L10 14.5H8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.5 14.5C16.1667 13.25 16.1667 10.75 14.5 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,kDACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kDACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
package/README.md CHANGED
@@ -249,6 +249,7 @@ Below is a complete list of available icons:
249
249
  - IconReduceMotion
250
250
  - IconSquareLinesBottom
251
251
  - IconVoiceControl
252
+ - IconVoiceover
252
253
 
253
254
  ### Arrows
254
255
 
@@ -347,7 +348,11 @@ Below is a complete list of available icons:
347
348
  - IconChevronTop
348
349
  - IconChevronTopMedium
349
350
  - IconChevronTopSmall
351
+ - IconChevronTriangleDownMedium
350
352
  - IconChevronTriangleDownSmall
353
+ - IconChevronTriangleLeftMedium
354
+ - IconChevronTriangleRightMedium
355
+ - IconChevronTriangleUpMedium
351
356
  - IconChevronTriangleUpSmall
352
357
  - IconCollaborationPointerLeft
353
358
  - IconCollaborationPointerRight
@@ -6706,10 +6706,24 @@
6706
6706
  "packageName": "square-outlined-radius-0-stroke-2",
6707
6707
  "componentName": "IconChevronTopSmall"
6708
6708
  },
6709
+ {
6710
+ "category": "Arrows",
6711
+ "svg": "<path d=\"M17 10H7L12 16L17 10Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
6712
+ "iconName": "chevron-triangle-down-medium, dropdown, caret",
6713
+ "variant": {
6714
+ "join": "square",
6715
+ "filled": "off",
6716
+ "radius": "0",
6717
+ "stroke": "2"
6718
+ },
6719
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6720
+ "packageName": "square-outlined-radius-0-stroke-2",
6721
+ "componentName": "IconChevronTriangleDownMedium"
6722
+ },
6709
6723
  {
6710
6724
  "category": "Arrows",
6711
6725
  "svg": "<path d=\"M15 11H9L12 15L15 11Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
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": "off",
@@ -6720,10 +6734,52 @@
6720
6734
  "packageName": "square-outlined-radius-0-stroke-2",
6721
6735
  "componentName": "IconChevronTriangleDownSmall"
6722
6736
  },
6737
+ {
6738
+ "category": "Arrows",
6739
+ "svg": "<path d=\"M14 7V17L8 12L14 7Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
6740
+ "iconName": "chevron-triangle-left-medium, dropdown, caret",
6741
+ "variant": {
6742
+ "join": "square",
6743
+ "filled": "off",
6744
+ "radius": "0",
6745
+ "stroke": "2"
6746
+ },
6747
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6748
+ "packageName": "square-outlined-radius-0-stroke-2",
6749
+ "componentName": "IconChevronTriangleLeftMedium"
6750
+ },
6751
+ {
6752
+ "category": "Arrows",
6753
+ "svg": "<path d=\"M10 7V17L16 12L10 7Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
6754
+ "iconName": "chevron-triangle-right-medium, dropdown, caret",
6755
+ "variant": {
6756
+ "join": "square",
6757
+ "filled": "off",
6758
+ "radius": "0",
6759
+ "stroke": "2"
6760
+ },
6761
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6762
+ "packageName": "square-outlined-radius-0-stroke-2",
6763
+ "componentName": "IconChevronTriangleRightMedium"
6764
+ },
6765
+ {
6766
+ "category": "Arrows",
6767
+ "svg": "<path d=\"M17 14H7L12 8L17 14Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
6768
+ "iconName": "chevron-triangle-up-medium, dropdown, caret",
6769
+ "variant": {
6770
+ "join": "square",
6771
+ "filled": "off",
6772
+ "radius": "0",
6773
+ "stroke": "2"
6774
+ },
6775
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
6776
+ "packageName": "square-outlined-radius-0-stroke-2",
6777
+ "componentName": "IconChevronTriangleUpMedium"
6778
+ },
6723
6779
  {
6724
6780
  "category": "Arrows",
6725
6781
  "svg": "<path d=\"M9 13H15L12 9L9 13Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
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": "off",
@@ -19364,7 +19420,7 @@
19364
19420
  },
19365
19421
  {
19366
19422
  "category": "Things",
19367
- "svg": "<path d=\"M5.5 4V3H4.5V4H5.5ZM5.5 7.5L6.16999 8.24237L6.5 7.94453V7.5H5.5ZM4 9.93505V10.935H4.69926L4.93926 10.2783L4 9.93505ZM2 9.93505V8.93505H1V9.93505H2ZM2 15H1V16H2V15ZM4 15L4.86571 14.4995L4.57693 14H4V15ZM6 17H7V16.4248L6.5028 16.1356L6 17ZM6 20H5V21H6V20ZM10 20V21H11V20H10ZM10 18V17H9V18H10ZM14 18H15V17H14V18ZM14 20H13V21H14V20ZM18 20V21H19V20H18ZM18 16.463L17.3322 15.7187L17 16.0167V16.463H18ZM9.474 6.00004L8.57494 6.43788L8.84871 7.00004H9.474V6.00004ZM23.597 11.4993L23.0963 10.6337L21.3651 11.6352L21.8658 12.5008L23.597 11.4993ZM20.4174 13.8137C19.9686 13.4918 19.3439 13.5947 19.022 14.0435C18.7001 14.4923 18.8029 15.117 19.2517 15.4389L20.4174 13.8137ZM4.5 4V7.5H6.5V4H4.5ZM4.83001 6.75763C3.93677 7.56378 3.42253 8.60172 3.06074 9.59184L4.93926 10.2783C5.25347 9.41837 5.62723 8.73222 6.16999 8.24237L4.83001 6.75763ZM4 8.93505H2V10.935H4V8.93505ZM1 9.93505V15H3V9.93505H1ZM2 16H4V14H2V16ZM3.13429 15.5006C3.74794 16.5619 4.44311 17.2513 5.4972 17.8644L6.5028 16.1356C5.74489 15.6947 5.30206 15.2542 4.86571 14.4995L3.13429 15.5006ZM5 17V20H7V17H5ZM6 21H10V19H6V21ZM11 20V18H9V20H11ZM10 19H14V17H10V19ZM13 18V20H15V18H13ZM14 21H18V19H14V21ZM19 20V16.463H17V20H19ZM18.6678 17.2074C20.0931 15.9287 21 14.0737 21 12H19C19 13.4763 18.3569 14.7994 17.3322 15.7187L18.6678 17.2074ZM21 12C21 8.13371 17.8663 5.00004 14 5.00004V7.00004C16.7617 7.00004 19 9.23829 19 12H21ZM14 5.00004H9.474V7.00004H14V5.00004ZM9.474 6.00004C10.3731 5.56221 10.3728 5.56167 10.3725 5.56113C10.3724 5.56093 10.3722 5.56038 10.372 5.55999C10.3716 5.55922 10.3712 5.55841 10.3708 5.55757C10.37 5.5559 10.3691 5.5541 10.3681 5.55217C10.3662 5.54832 10.364 5.54398 10.3615 5.53915C10.3566 5.52949 10.3505 5.51789 10.3433 5.50449C10.329 5.4777 10.3099 5.44362 10.286 5.40333C10.2382 5.32282 10.1703 5.21689 10.0799 5.09426C9.89951 4.84944 9.62653 4.53429 9.24068 4.22236C8.45581 3.58785 7.24328 3 5.5 3V5C6.75672 5 7.53119 5.41217 7.98332 5.77768C8.21597 5.96576 8.37399 6.15062 8.46994 6.28081C8.51775 6.34568 8.54942 6.39601 8.56658 6.42489C8.57513 6.43928 8.57997 6.44817 8.58132 6.45068C8.58199 6.45192 8.58177 6.45156 8.58071 6.44947C8.58017 6.44842 8.57942 6.44694 8.57846 6.44502C8.57798 6.44405 8.57745 6.44298 8.57686 6.44179C8.57657 6.44119 8.57626 6.44057 8.57594 6.43992C8.57578 6.43959 8.57553 6.43908 8.57545 6.43892C8.5752 6.4384 8.57494 6.43788 9.474 6.00004ZM21.999 13C21.999 13.5523 21.5512 14 20.999 14V16C22.6558 16 23.999 14.6569 23.999 13H21.999ZM21.8658 12.5008C21.9503 12.6468 21.999 12.8162 21.999 13H23.999C23.999 12.4553 23.8528 11.9416 23.597 11.4993L21.8658 12.5008ZM20.999 14C20.7805 14 20.5811 13.9311 20.4174 13.8137L19.2517 15.4389C19.7439 15.792 20.3486 16 20.999 16V14Z\" fill=\"currentColor\"/><path d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
19423
+ "svg": "<path d=\"M5.5 7.5V4C8.5 4 9.474 6.00004 9.474 6.00004H14C17.314 6.00004 20 8.686 20 12C20 13.775 19.225 15.364 18 16.463V20H14V18H10V20H6V17C5.094 16.473 4.525 15.908 4 15H2V9.93505H4C4.338 9.01005 4.782 8.148 5.5 7.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M23.5984 11.4993L23.0977 10.6337L21.3664 11.6351L21.8672 12.5007L22.7328 12L23.5984 11.4993ZM20.4188 13.8137C19.97 13.4918 19.3452 13.5947 19.0234 14.0434C18.7015 14.4922 18.8043 15.117 19.2531 15.4389L19.8359 14.6263L20.4188 13.8137ZM22.7328 12L21.8672 12.5007C21.9517 12.6468 22.0003 12.8162 22.0003 13H23.0003H24.0003C24.0003 12.4552 23.8542 11.9416 23.5984 11.4993L22.7328 12ZM23.0003 13H22.0003C22.0003 13.5523 21.5526 14 21.0003 14V15V16C22.6572 16 24.0003 14.6569 24.0003 13H23.0003ZM21.0003 15V14C20.7819 14 20.5825 13.9311 20.4188 13.8137L19.8359 14.6263L19.2531 15.4389C19.7453 15.7919 20.35 16 21.0003 16V15Z\" fill=\"currentColor\"/><path d=\"M8.25 10.75H8.26M8.5 10.75C8.5 10.8881 8.38807 11 8.25 11C8.11193 11 8 10.8881 8 10.75C8 10.6119 8.11193 10.5 8.25 10.5C8.38807 10.5 8.5 10.6119 8.5 10.75Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
19368
19424
  "iconName": "piggy-bank, save-money",
19369
19425
  "variant": {
19370
19426
  "join": "square",
@@ -27118,6 +27174,20 @@
27118
27174
  "packageName": "square-outlined-radius-0-stroke-2",
27119
27175
  "componentName": "IconVoiceMode"
27120
27176
  },
27177
+ {
27178
+ "category": "Accessibility",
27179
+ "svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 14.5V9.5H10L11.5 7.5H13V16.5H11.5L10 14.5H8Z\" fill=\"currentColor\"/><path d=\"M14.5 14.5C16.1667 13.25 16.1667 10.75 14.5 9.5\" stroke=\"currentColor\" stroke-width=\"2\"/>",
27180
+ "iconName": "voiceover, sound",
27181
+ "variant": {
27182
+ "join": "square",
27183
+ "filled": "off",
27184
+ "radius": "0",
27185
+ "stroke": "2"
27186
+ },
27187
+ "createdAt": "2026-05-21T07:02:14.376118+00:00",
27188
+ "packageName": "square-outlined-radius-0-stroke-2",
27189
+ "componentName": "IconVoiceover"
27190
+ },
27121
27191
  {
27122
27192
  "category": "Sound & Music",
27123
27193
  "svg": "<circle cx=\"16.5\" cy=\"15.5\" r=\"4.5\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"16.5\" cy=\"15.5\" r=\"2.5\" fill=\"currentColor\"/><path d=\"M3.00391 9V11M6.50391 4V16M10.0039 7V10M13.5039 5V7.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
package/icons/index.d.ts CHANGED
@@ -478,7 +478,11 @@ export type CentralIconName =
478
478
  | "IconChevronTop"
479
479
  | "IconChevronTopMedium"
480
480
  | "IconChevronTopSmall"
481
+ | "IconChevronTriangleDownMedium"
481
482
  | "IconChevronTriangleDownSmall"
483
+ | "IconChevronTriangleLeftMedium"
484
+ | "IconChevronTriangleRightMedium"
485
+ | "IconChevronTriangleUpMedium"
482
486
  | "IconChevronTriangleUpSmall"
483
487
  | "IconChip"
484
488
  | "IconChipSimple"
@@ -1936,6 +1940,7 @@ export type CentralIconName =
1936
1940
  | "IconVoiceMemo"
1937
1941
  | "IconVoiceMid"
1938
1942
  | "IconVoiceMode"
1943
+ | "IconVoiceover"
1939
1944
  | "IconVoiceRecord"
1940
1945
  | "IconVoiceSettings"
1941
1946
  | "IconVoiceShare"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-outlined-radius-0-stroke-2",
3
- "version": "1.1.241",
3
+ "version": "1.1.242",
4
4
  "style": "square-outlined-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 2001,
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": 11,
110
+ "count": 12,
111
111
  "icons": [
112
112
  "IconCircleHalfFill",
113
113
  "IconCirclePerson",
@@ -119,11 +119,12 @@
119
119
  "IconImageAltText",
120
120
  "IconReduceMotion",
121
121
  "IconSquareLinesBottom",
122
- "IconVoiceControl"
122
+ "IconVoiceControl",
123
+ "IconVoiceover"
123
124
  ]
124
125
  },
125
126
  "Arrows": {
126
- "count": 136,
127
+ "count": 140,
127
128
  "icons": [
128
129
  "IconArrow",
129
130
  "IconArrowBottomTop",
@@ -220,7 +221,11 @@
220
221
  "IconChevronTop",
221
222
  "IconChevronTopMedium",
222
223
  "IconChevronTopSmall",
224
+ "IconChevronTriangleDownMedium",
223
225
  "IconChevronTriangleDownSmall",
226
+ "IconChevronTriangleLeftMedium",
227
+ "IconChevronTriangleRightMedium",
228
+ "IconChevronTriangleUpMedium",
224
229
  "IconChevronTriangleUpSmall",
225
230
  "IconCollaborationPointerLeft",
226
231
  "IconCollaborationPointerRight",
@@ -2681,8 +2686,12 @@
2681
2686
  "IconChevronTop": "chevron-top",
2682
2687
  "IconChevronTopMedium": "chevron-top-medium",
2683
2688
  "IconChevronTopSmall": "chevron-top-small",
2684
- "IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown",
2685
- "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",
2686
2695
  "IconChip": "chip, esim",
2687
2696
  "IconChipSimple": "chip-simple, processor",
2688
2697
  "IconChrome": "chrome",
@@ -4139,6 +4148,7 @@
4139
4148
  "IconVoiceMemo": "voice-memo, voice-control",
4140
4149
  "IconVoiceMid": "voice-mid, wave",
4141
4150
  "IconVoiceMode": "voice-mode, voice-settings",
4151
+ "IconVoiceover": "voiceover, sound",
4142
4152
  "IconVoiceRecord": "voice-record",
4143
4153
  "IconVoiceSettings": "voice-settings, edit-voice",
4144
4154
  "IconVoiceShare": "voice-share",
package/index.d.ts CHANGED
@@ -477,7 +477,11 @@ export { IconChevronRightSmall, default as IconChevronRightSmallDefault, } from
477
477
  export { IconChevronTop, default as IconChevronTopDefault, } from "./IconChevronTop";
478
478
  export { IconChevronTopMedium, default as IconChevronTopMediumDefault, } from "./IconChevronTopMedium";
479
479
  export { IconChevronTopSmall, default as IconChevronTopSmallDefault, } from "./IconChevronTopSmall";
480
+ export { IconChevronTriangleDownMedium, default as IconChevronTriangleDownMediumDefault, } from "./IconChevronTriangleDownMedium";
480
481
  export { IconChevronTriangleDownSmall, default as IconChevronTriangleDownSmallDefault, } from "./IconChevronTriangleDownSmall";
482
+ export { IconChevronTriangleLeftMedium, default as IconChevronTriangleLeftMediumDefault, } from "./IconChevronTriangleLeftMedium";
483
+ export { IconChevronTriangleRightMedium, default as IconChevronTriangleRightMediumDefault, } from "./IconChevronTriangleRightMedium";
484
+ export { IconChevronTriangleUpMedium, default as IconChevronTriangleUpMediumDefault, } from "./IconChevronTriangleUpMedium";
481
485
  export { IconChevronTriangleUpSmall, default as IconChevronTriangleUpSmallDefault, } from "./IconChevronTriangleUpSmall";
482
486
  export { IconChip, default as IconChipDefault } from "./IconChip";
483
487
  export { IconChipSimple, default as IconChipSimpleDefault, } from "./IconChipSimple";
@@ -1939,6 +1943,7 @@ export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoice
1939
1943
  export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
1940
1944
  export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
1941
1945
  export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
1946
+ export { IconVoiceover, default as IconVoiceoverDefault, } from "./IconVoiceover";
1942
1947
  export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
1943
1948
  export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
1944
1949
  export { IconVolumeFull, default as IconVolumeFullDefault, } from "./IconVolumeFull";