@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.40 → 1.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconCheckCircle2/index.d.ts +4 -0
- package/IconCheckCircle2/index.js +2 -0
- package/IconCheckCircle2/index.js.map +1 -0
- package/IconCheckCircle2/index.mjs +2 -0
- package/IconCheckCircle2/index.mjs.map +1 -0
- package/IconDoupleCheck/index.d.ts +4 -0
- package/IconDoupleCheck/index.js +2 -0
- package/IconDoupleCheck/index.js.map +1 -0
- package/IconDoupleCheck/index.mjs +2 -0
- package/IconDoupleCheck/index.mjs.map +1 -0
- package/IconDoupleCheckmark1/index.d.ts +4 -0
- package/IconDoupleCheckmark1/index.js +2 -0
- package/IconDoupleCheckmark1/index.js.map +1 -0
- package/IconDoupleCheckmark1/index.mjs +2 -0
- package/IconDoupleCheckmark1/index.mjs.map +1 -0
- package/IconDoupleCheckmark1Small/index.d.ts +4 -0
- package/IconDoupleCheckmark1Small/index.js +2 -0
- package/IconDoupleCheckmark1Small/index.js.map +1 -0
- package/IconDoupleCheckmark1Small/index.mjs +2 -0
- package/IconDoupleCheckmark1Small/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +11 -3
- package/index.d.ts +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +28 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!v.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>l(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconCheckCircle2:()=>i,default:()=>g});module.exports=P(h);var C=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...e})=>c.default.createElement(m.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=>C.default.createElement(s,{...r},C.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 2ZM15.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z",fill:"currentColor"})),g=i;0&&(module.exports={IconCheckCircle2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckCircle2/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 IconCheckCircle2: 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 2ZM15.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckCircle2;\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,SAAS,UACT,SAAS,UACT,EAAE,8dACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCheckCircle2_exports","__export","IconCheckCircle2","IconCheckCircle2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCheckCircle2","props","React","CentralIconBase","IconCheckCircle2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...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 a=o=>t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z",fill:"currentColor"})),v=a;export{a as IconCheckCircle2,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckCircle2/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 IconCheckCircle2: 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 2ZM15.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckCircle2;\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,SAAS,UACT,SAAS,UACT,EAAE,8dACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCheckCircle2","props","React","CentralIconBase","IconCheckCircle2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of i(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=I(o,t))||p.enumerable});return r};var l=(r,o,e)=>(e=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconDoupleCheck:()=>u,default:()=>h});module.exports=L(v);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M22.0977 4.20312C22.2615 3.98107 22.5747 3.93389 22.7969 4.09766C23.0189 4.26156 23.0661 4.57469 22.9023 4.79688L11.8467 19.7969C11.6828 20.0189 11.3697 20.0661 11.1475 19.9023C10.9254 19.7385 10.8782 19.4253 11.042 19.2031L22.0977 4.20312ZM18.0977 4.20312C18.2615 3.98102 18.5747 3.93387 18.7969 4.09766C19.0189 4.26154 19.0661 4.57467 18.9023 4.79688L7.84668 19.7969C7.76633 19.9057 7.64483 19.977 7.51074 19.9951C7.37668 20.0131 7.24099 19.9763 7.13477 19.8926L1.19043 15.2051C0.973604 15.0341 0.936462 14.7198 1.10742 14.5029C1.27841 14.2861 1.59273 14.2489 1.80957 14.4199L7.34766 18.7871L18.0977 4.20312Z",fill:"currentColor"})),h=u;0&&(module.exports={IconDoupleCheck});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheck/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 IconDoupleCheck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M22.0977 4.20312C22.2615 3.98107 22.5747 3.93389 22.7969 4.09766C23.0189 4.26156 23.0661 4.57469 22.9023 4.79688L11.8467 19.7969C11.6828 20.0189 11.3697 20.0661 11.1475 19.9023C10.9254 19.7385 10.8782 19.4253 11.042 19.2031L22.0977 4.20312ZM18.0977 4.20312C18.2615 3.98102 18.5747 3.93387 18.7969 4.09766C19.0189 4.26154 19.0661 4.57467 18.9023 4.79688L7.84668 19.7969C7.76633 19.9057 7.64483 19.977 7.51074 19.9951C7.37668 20.0131 7.24099 19.9763 7.13477 19.8926L1.19043 15.2051C0.973604 15.0341 0.936462 14.7198 1.10742 14.5029C1.27841 14.2861 1.59273 14.2489 1.80957 14.4199L7.34766 18.7871L18.0977 4.20312Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheck;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qmBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDoupleCheck_exports","__export","IconDoupleCheck","IconDoupleCheck_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDoupleCheck","props","React","CentralIconBase","IconDoupleCheck_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M22.0977 4.20312C22.2615 3.98107 22.5747 3.93389 22.7969 4.09766C23.0189 4.26156 23.0661 4.57469 22.9023 4.79688L11.8467 19.7969C11.6828 20.0189 11.3697 20.0661 11.1475 19.9023C10.9254 19.7385 10.8782 19.4253 11.042 19.2031L22.0977 4.20312ZM18.0977 4.20312C18.2615 3.98102 18.5747 3.93387 18.7969 4.09766C19.0189 4.26154 19.0661 4.57467 18.9023 4.79688L7.84668 19.7969C7.76633 19.9057 7.64483 19.977 7.51074 19.9951C7.37668 20.0131 7.24099 19.9763 7.13477 19.8926L1.19043 15.2051C0.973604 15.0341 0.936462 14.7198 1.10742 14.5029C1.27841 14.2861 1.59273 14.2489 1.80957 14.4199L7.34766 18.7871L18.0977 4.20312Z",fill:"currentColor"})),P=l;export{l as IconDoupleCheck,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheck/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 IconDoupleCheck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M22.0977 4.20312C22.2615 3.98107 22.5747 3.93389 22.7969 4.09766C23.0189 4.26156 23.0661 4.57469 22.9023 4.79688L11.8467 19.7969C11.6828 20.0189 11.3697 20.0661 11.1475 19.9023C10.9254 19.7385 10.8782 19.4253 11.042 19.2031L22.0977 4.20312ZM18.0977 4.20312C18.2615 3.98102 18.5747 3.93387 18.7969 4.09766C19.0189 4.26154 19.0661 4.57467 18.9023 4.79688L7.84668 19.7969C7.76633 19.9057 7.64483 19.977 7.51074 19.9951C7.37668 20.0131 7.24099 19.9763 7.13477 19.8926L1.19043 15.2051C0.973604 15.0341 0.936462 14.7198 1.10742 14.5029C1.27841 14.2861 1.59273 14.2489 1.80957 14.4199L7.34766 18.7871L18.0977 4.20312Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheck;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qmBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDoupleCheck","props","React","CentralIconBase","IconDoupleCheck_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of i(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=I(o,t))||p.enumerable});return r};var l=(r,o,e)=>(e=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconDoupleCheckmark1:()=>u,default:()=>h});module.exports=L(v);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M21.0801 4.22949C21.2295 3.99779 21.5385 3.93012 21.7705 4.0791C22.0026 4.22837 22.0699 4.53829 21.9209 4.77051L12.2783 19.7705C12.129 20.0027 11.8192 20.0701 11.5869 19.9209C11.3546 19.7716 11.2872 19.4618 11.4365 19.2295L21.0801 4.22949ZM17.0791 4.22949C17.2284 3.99741 17.5383 3.93006 17.7705 4.0791C18.0027 4.22839 18.0701 4.53824 17.9209 4.77051L8.27734 19.7705C8.19027 19.9058 8.04347 19.9907 7.88281 19.999C7.72221 20.0072 7.5673 19.938 7.4668 19.8125L2.10938 13.1162C1.93713 12.9006 1.97202 12.5855 2.1875 12.4131C2.40304 12.2407 2.71809 12.2758 2.89062 12.4912L7.8125 18.6436L17.0791 4.22949Z",fill:"currentColor"})),h=u;0&&(module.exports={IconDoupleCheckmark1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark1/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 IconDoupleCheckmark1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0801 4.22949C21.2295 3.99779 21.5385 3.93012 21.7705 4.0791C22.0026 4.22837 22.0699 4.53829 21.9209 4.77051L12.2783 19.7705C12.129 20.0027 11.8192 20.0701 11.5869 19.9209C11.3546 19.7716 11.2872 19.4618 11.4365 19.2295L21.0801 4.22949ZM17.0791 4.22949C17.2284 3.99741 17.5383 3.93006 17.7705 4.0791C18.0027 4.22839 18.0701 4.53824 17.9209 4.77051L8.27734 19.7705C8.19027 19.9058 8.04347 19.9907 7.88281 19.999C7.72221 20.0072 7.5673 19.938 7.4668 19.8125L2.10938 13.1162C1.93713 12.9006 1.97202 12.5855 2.1875 12.4131C2.40304 12.2407 2.71809 12.2758 2.89062 12.4912L7.8125 18.6436L17.0791 4.22949Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark1;\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,0BAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4lBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDoupleCheckmark1_exports","__export","IconDoupleCheckmark1","IconDoupleCheckmark1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDoupleCheckmark1","props","React","CentralIconBase","IconDoupleCheckmark1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M21.0801 4.22949C21.2295 3.99779 21.5385 3.93012 21.7705 4.0791C22.0026 4.22837 22.0699 4.53829 21.9209 4.77051L12.2783 19.7705C12.129 20.0027 11.8192 20.0701 11.5869 19.9209C11.3546 19.7716 11.2872 19.4618 11.4365 19.2295L21.0801 4.22949ZM17.0791 4.22949C17.2284 3.99741 17.5383 3.93006 17.7705 4.0791C18.0027 4.22839 18.0701 4.53824 17.9209 4.77051L8.27734 19.7705C8.19027 19.9058 8.04347 19.9907 7.88281 19.999C7.72221 20.0072 7.5673 19.938 7.4668 19.8125L2.10938 13.1162C1.93713 12.9006 1.97202 12.5855 2.1875 12.4131C2.40304 12.2407 2.71809 12.2758 2.89062 12.4912L7.8125 18.6436L17.0791 4.22949Z",fill:"currentColor"})),P=l;export{l as IconDoupleCheckmark1,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark1/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 IconDoupleCheckmark1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0801 4.22949C21.2295 3.99779 21.5385 3.93012 21.7705 4.0791C22.0026 4.22837 22.0699 4.53829 21.9209 4.77051L12.2783 19.7705C12.129 20.0027 11.8192 20.0701 11.5869 19.9209C11.3546 19.7716 11.2872 19.4618 11.4365 19.2295L21.0801 4.22949ZM17.0791 4.22949C17.2284 3.99741 17.5383 3.93006 17.7705 4.0791C18.0027 4.22839 18.0701 4.53824 17.9209 4.77051L8.27734 19.7705C8.19027 19.9058 8.04347 19.9907 7.88281 19.999C7.72221 20.0072 7.5673 19.938 7.4668 19.8125L2.10938 13.1162C1.93713 12.9006 1.97202 12.5855 2.1875 12.4131C2.40304 12.2407 2.71809 12.2758 2.89062 12.4912L7.8125 18.6436L17.0791 4.22949Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark1;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4lBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDoupleCheckmark1","props","React","CentralIconBase","IconDoupleCheckmark1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconDoupleCheckmark1Small:()=>u,default:()=>h});module.exports=L(v);var C=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(c.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 p=require("react-native-svg"),u=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M18.0762 7.23561C18.2225 7.0015 18.5305 6.93022 18.7647 7.07643C18.9987 7.22278 19.07 7.5308 18.9239 7.7649L13.2989 16.7649C13.1525 16.9988 12.8445 17.0702 12.6104 16.9241C12.3763 16.7778 12.3051 16.4697 12.4512 16.2356L18.0762 7.23561Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M14.0762 7.23561C14.2225 7.0015 14.5305 6.93022 14.7647 7.07643C14.9987 7.22278 15.07 7.5308 14.9239 7.7649L9.29886 16.7649C9.2181 16.894 9.08299 16.9801 8.93168 16.9973C8.78035 17.0146 8.62925 16.9614 8.52152 16.8538L5.14652 13.4788C4.95129 13.2835 4.95136 12.967 5.14652 12.7717C5.34178 12.5765 5.65829 12.5765 5.85355 12.7717L8.78421 15.7024L14.0762 7.23561Z",fill:"currentColor"})),h=u;0&&(module.exports={IconDoupleCheckmark1Small});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark1Small/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 IconDoupleCheckmark1Small: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.0762 7.23561C18.2225 7.0015 18.5305 6.93022 18.7647 7.07643C18.9987 7.22278 19.07 7.5308 18.9239 7.7649L13.2989 16.7649C13.1525 16.9988 12.8445 17.0702 12.6104 16.9241C12.3763 16.7778 12.3051 16.4697 12.4512 16.2356L18.0762 7.23561Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.0762 7.23561C14.2225 7.0015 14.5305 6.93022 14.7647 7.07643C14.9987 7.22278 15.07 7.5308 14.9239 7.7649L9.29886 16.7649C9.2181 16.894 9.08299 16.9801 8.93168 16.9973C8.78035 17.0146 8.62925 16.9614 8.52152 16.8538L5.14652 13.4788C4.95129 13.2835 4.95136 12.967 5.14652 12.7717C5.34178 12.5765 5.65829 12.5765 5.85355 12.7717L8.78421 15.7024L14.0762 7.23561Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark1Small;\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,+BAAAE,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,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4WACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDoupleCheckmark1Small_exports","__export","IconDoupleCheckmark1Small","IconDoupleCheckmark1Small_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDoupleCheckmark1Small","props","React","CentralIconBase","IconDoupleCheckmark1Small_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...C})=>p.createElement(l,{...C,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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M18.0762 7.23561C18.2225 7.0015 18.5305 6.93022 18.7647 7.07643C18.9987 7.22278 19.07 7.5308 18.9239 7.7649L13.2989 16.7649C13.1525 16.9988 12.8445 17.0702 12.6104 16.9241C12.3763 16.7778 12.3051 16.4697 12.4512 16.2356L18.0762 7.23561Z",fill:"currentColor"}),e.createElement(n,{d:"M14.0762 7.23561C14.2225 7.0015 14.5305 6.93022 14.7647 7.07643C14.9987 7.22278 15.07 7.5308 14.9239 7.7649L9.29886 16.7649C9.2181 16.894 9.08299 16.9801 8.93168 16.9973C8.78035 17.0146 8.62925 16.9614 8.52152 16.8538L5.14652 13.4788C4.95129 13.2835 4.95136 12.967 5.14652 12.7717C5.34178 12.5765 5.65829 12.5765 5.85355 12.7717L8.78421 15.7024L14.0762 7.23561Z",fill:"currentColor"})),P=a;export{a as IconDoupleCheckmark1Small,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark1Small/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 IconDoupleCheckmark1Small: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.0762 7.23561C18.2225 7.0015 18.5305 6.93022 18.7647 7.07643C18.9987 7.22278 19.07 7.5308 18.9239 7.7649L13.2989 16.7649C13.1525 16.9988 12.8445 17.0702 12.6104 16.9241C12.3763 16.7778 12.3051 16.4697 12.4512 16.2356L18.0762 7.23561Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.0762 7.23561C14.2225 7.0015 14.5305 6.93022 14.7647 7.07643C14.9987 7.22278 15.07 7.5308 14.9239 7.7649L9.29886 16.7649C9.2181 16.894 9.08299 16.9801 8.93168 16.9973C8.78035 17.0146 8.62925 16.9614 8.52152 16.8538L5.14652 13.4788C4.95129 13.2835 4.95136 12.967 5.14652 12.7717C5.34178 12.5765 5.65829 12.5765 5.85355 12.7717L8.78421 15.7024L14.0762 7.23561Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark1Small;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4WACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDoupleCheckmark1Small","props","React","CentralIconBase","IconDoupleCheckmark1Small_default"]}
|
package/README.md
CHANGED
|
@@ -893,6 +893,7 @@ Below is a complete list of available icons:
|
|
|
893
893
|
- IconChainLink2
|
|
894
894
|
- IconChainLink3
|
|
895
895
|
- IconChainLink4
|
|
896
|
+
- IconCheckCircle2
|
|
896
897
|
- IconChecklist
|
|
897
898
|
- IconCheckmark1
|
|
898
899
|
- IconCheckmark1Small
|
|
@@ -924,6 +925,9 @@ Below is a complete list of available icons:
|
|
|
924
925
|
- IconDotGrid1x3Vertical
|
|
925
926
|
- IconDotGrid2x3
|
|
926
927
|
- IconDotGrid3x3
|
|
928
|
+
- IconDoupleCheck
|
|
929
|
+
- IconDoupleCheckmark1
|
|
930
|
+
- IconDoupleCheckmark1Small
|
|
927
931
|
- IconElectrocardiogram
|
|
928
932
|
- IconFeature
|
|
929
933
|
- IconGauge
|
package/filtered-icons.json
CHANGED
|
@@ -5236,6 +5236,20 @@
|
|
|
5236
5236
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
5237
5237
|
"componentName": "IconChart7"
|
|
5238
5238
|
},
|
|
5239
|
+
{
|
|
5240
|
+
"category": "Interface General",
|
|
5241
|
+
"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 2ZM15.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z\" fill=\"currentColor\"/>",
|
|
5242
|
+
"iconName": "check-circle-2, done, confirm, save, success",
|
|
5243
|
+
"variant": {
|
|
5244
|
+
"join": "round",
|
|
5245
|
+
"filled": "on",
|
|
5246
|
+
"radius": "2",
|
|
5247
|
+
"stroke": "1"
|
|
5248
|
+
},
|
|
5249
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
5250
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
5251
|
+
"componentName": "IconCheckCircle2"
|
|
5252
|
+
},
|
|
5239
5253
|
{
|
|
5240
5254
|
"category": "Interface General",
|
|
5241
5255
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.77738 4.58403C9.00714 4.7372 9.06923 5.04764 8.91605 5.2774L5.91605 9.7774C5.83983 9.89175 5.7199 9.96967 5.58445 9.99288C5.449 10.0161 5.30997 9.98251 5.20003 9.90005L3.20003 8.40005C2.97912 8.23437 2.93434 7.92097 3.10003 7.70005C3.26571 7.47914 3.57912 7.43437 3.80003 7.60005L5.37719 8.78292L8.084 4.7227C8.23718 4.49294 8.54762 4.43085 8.77738 4.58403ZM11 7.50005C11 7.22391 11.2239 7.00005 11.5 7.00005H20.5C20.7762 7.00005 21 7.22391 21 7.50005C21 7.7762 20.7762 8.00005 20.5 8.00005H11.5C11.2239 8.00005 11 7.7762 11 7.50005ZM8.77738 13.584C9.00714 13.7372 9.06923 14.0476 8.91605 14.2774L5.91605 18.7774C5.83983 18.8917 5.7199 18.9697 5.58445 18.9929C5.449 19.0161 5.30997 18.9825 5.20003 18.9001L3.20003 17.4001C2.97912 17.2344 2.93434 16.921 3.10003 16.7001C3.26571 16.4791 3.57912 16.4344 3.80003 16.6001L5.37719 17.7829L8.084 13.7227C8.23718 13.4929 8.54762 13.4309 8.77738 13.584ZM11 16.5001C11 16.2239 11.2239 16.0001 11.5 16.0001H20.5C20.7762 16.0001 21 16.2239 21 16.5001C21 16.7762 20.7762 17.0001 20.5 17.0001H11.5C11.2239 17.0001 11 16.7762 11 16.5001Z\" fill=\"currentColor\"/>",
|
|
@@ -8050,6 +8064,48 @@
|
|
|
8050
8064
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
8051
8065
|
"componentName": "IconDotGrid3x3"
|
|
8052
8066
|
},
|
|
8067
|
+
{
|
|
8068
|
+
"category": "Interface General",
|
|
8069
|
+
"svg": "<path d=\"M22.0977 4.20312C22.2615 3.98107 22.5747 3.93389 22.7969 4.09766C23.0189 4.26156 23.0661 4.57469 22.9023 4.79688L11.8467 19.7969C11.6828 20.0189 11.3697 20.0661 11.1475 19.9023C10.9254 19.7385 10.8782 19.4253 11.042 19.2031L22.0977 4.20312ZM18.0977 4.20312C18.2615 3.98102 18.5747 3.93387 18.7969 4.09766C19.0189 4.26154 19.0661 4.57467 18.9023 4.79688L7.84668 19.7969C7.76633 19.9057 7.64483 19.977 7.51074 19.9951C7.37668 20.0131 7.24099 19.9763 7.13477 19.8926L1.19043 15.2051C0.973604 15.0341 0.936462 14.7198 1.10742 14.5029C1.27841 14.2861 1.59273 14.2489 1.80957 14.4199L7.34766 18.7871L18.0977 4.20312Z\" fill=\"currentColor\"/>",
|
|
8070
|
+
"iconName": "douple-check",
|
|
8071
|
+
"variant": {
|
|
8072
|
+
"join": "round",
|
|
8073
|
+
"filled": "on",
|
|
8074
|
+
"radius": "2",
|
|
8075
|
+
"stroke": "1"
|
|
8076
|
+
},
|
|
8077
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8078
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
8079
|
+
"componentName": "IconDoupleCheck"
|
|
8080
|
+
},
|
|
8081
|
+
{
|
|
8082
|
+
"category": "Interface General",
|
|
8083
|
+
"svg": "<path d=\"M21.0801 4.22949C21.2295 3.99779 21.5385 3.93012 21.7705 4.0791C22.0026 4.22837 22.0699 4.53829 21.9209 4.77051L12.2783 19.7705C12.129 20.0027 11.8192 20.0701 11.5869 19.9209C11.3546 19.7716 11.2872 19.4618 11.4365 19.2295L21.0801 4.22949ZM17.0791 4.22949C17.2284 3.99741 17.5383 3.93006 17.7705 4.0791C18.0027 4.22839 18.0701 4.53824 17.9209 4.77051L8.27734 19.7705C8.19027 19.9058 8.04347 19.9907 7.88281 19.999C7.72221 20.0072 7.5673 19.938 7.4668 19.8125L2.10938 13.1162C1.93713 12.9006 1.97202 12.5855 2.1875 12.4131C2.40304 12.2407 2.71809 12.2758 2.89062 12.4912L7.8125 18.6436L17.0791 4.22949Z\" fill=\"currentColor\"/>",
|
|
8084
|
+
"iconName": "douple-checkmark-1",
|
|
8085
|
+
"variant": {
|
|
8086
|
+
"join": "round",
|
|
8087
|
+
"filled": "on",
|
|
8088
|
+
"radius": "2",
|
|
8089
|
+
"stroke": "1"
|
|
8090
|
+
},
|
|
8091
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8092
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
8093
|
+
"componentName": "IconDoupleCheckmark1"
|
|
8094
|
+
},
|
|
8095
|
+
{
|
|
8096
|
+
"category": "Interface General",
|
|
8097
|
+
"svg": "<path d=\"M18.0762 7.23561C18.2225 7.0015 18.5305 6.93022 18.7647 7.07643C18.9987 7.22278 19.07 7.5308 18.9239 7.7649L13.2989 16.7649C13.1525 16.9988 12.8445 17.0702 12.6104 16.9241C12.3763 16.7778 12.3051 16.4697 12.4512 16.2356L18.0762 7.23561Z\" fill=\"currentColor\"/><path d=\"M14.0762 7.23561C14.2225 7.0015 14.5305 6.93022 14.7647 7.07643C14.9987 7.22278 15.07 7.5308 14.9239 7.7649L9.29886 16.7649C9.2181 16.894 9.08299 16.9801 8.93168 16.9973C8.78035 17.0146 8.62925 16.9614 8.52152 16.8538L5.14652 13.4788C4.95129 13.2835 4.95136 12.967 5.14652 12.7717C5.34178 12.5765 5.65829 12.5765 5.85355 12.7717L8.78421 15.7024L14.0762 7.23561Z\" fill=\"currentColor\"/>",
|
|
8098
|
+
"iconName": "douple-checkmark-1-small",
|
|
8099
|
+
"variant": {
|
|
8100
|
+
"join": "round",
|
|
8101
|
+
"filled": "on",
|
|
8102
|
+
"radius": "2",
|
|
8103
|
+
"stroke": "1"
|
|
8104
|
+
},
|
|
8105
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8106
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
8107
|
+
"componentName": "IconDoupleCheckmark1Small"
|
|
8108
|
+
},
|
|
8053
8109
|
{
|
|
8054
8110
|
"category": "Photography & Video",
|
|
8055
8111
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 7.5C10 8.88071 8.88071 10 7.5 10H3.5C3.22386 10 3 9.77614 3 9.5C3 9.22386 3.22386 9 3.5 9H7.5C8.32843 9 9 8.32843 9 7.5V3.5C9 3.22386 9.22386 3 9.5 3C9.77614 3 10 3.22386 10 3.5V7.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 9.5C21 9.77614 20.7761 10 20.5 10H16.5C15.1193 10 14 8.88071 14 7.5V3.5C14 3.22386 14.2239 3 14.5 3C14.7761 3 15 3.22386 15 3.5V7.5C15 8.32843 15.6716 9 16.5 9H20.5C20.7761 9 21 9.22386 21 9.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5 21C14.2239 21 14 20.7761 14 20.5V16.5C14 15.1193 15.1193 14 16.5 14H20.5C20.7761 14 21 14.2239 21 14.5C21 14.7761 20.7761 15 20.5 15H16.5C15.6716 15 15 15.6716 15 16.5V20.5C15 20.7761 14.7761 21 14.5 21Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5 21C9.22386 21 9 20.7761 9 20.5V16.5C9 15.6716 8.32843 15 7.5 15H3.5C3.22386 15 3 14.7761 3 14.5C3 14.2239 3.22386 14 3.5 14H7.5C8.88071 14 10 15.1193 10 16.5V20.5C10 20.7761 9.77614 21 9.5 21Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -373,6 +373,7 @@ export type CentralIconName =
|
|
|
373
373
|
| "IconChart5"
|
|
374
374
|
| "IconChart6"
|
|
375
375
|
| "IconChart7"
|
|
376
|
+
| "IconCheckCircle2"
|
|
376
377
|
| "IconChecklist"
|
|
377
378
|
| "IconCheckmark1"
|
|
378
379
|
| "IconCheckmark1Small"
|
|
@@ -574,6 +575,9 @@ export type CentralIconName =
|
|
|
574
575
|
| "IconDotGrid1x3Vertical"
|
|
575
576
|
| "IconDotGrid2x3"
|
|
576
577
|
| "IconDotGrid3x3"
|
|
578
|
+
| "IconDoupleCheck"
|
|
579
|
+
| "IconDoupleCheckmark1"
|
|
580
|
+
| "IconDoupleCheckmark1Small"
|
|
577
581
|
| "IconDownsize"
|
|
578
582
|
| "IconDownsize2"
|
|
579
583
|
| "IconDraft"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-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":
|
|
14
|
+
"totalIcons": 1590,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 47,
|
|
@@ -757,7 +757,7 @@
|
|
|
757
757
|
]
|
|
758
758
|
},
|
|
759
759
|
"Interface General": {
|
|
760
|
-
"count":
|
|
760
|
+
"count": 168,
|
|
761
761
|
"icons": [
|
|
762
762
|
"IconAnchor1",
|
|
763
763
|
"IconAnchor2",
|
|
@@ -797,6 +797,7 @@
|
|
|
797
797
|
"IconChainLink2",
|
|
798
798
|
"IconChainLink3",
|
|
799
799
|
"IconChainLink4",
|
|
800
|
+
"IconCheckCircle2",
|
|
800
801
|
"IconChecklist",
|
|
801
802
|
"IconCheckmark1",
|
|
802
803
|
"IconCheckmark1Small",
|
|
@@ -828,6 +829,9 @@
|
|
|
828
829
|
"IconDotGrid1x3Vertical",
|
|
829
830
|
"IconDotGrid2x3",
|
|
830
831
|
"IconDotGrid3x3",
|
|
832
|
+
"IconDoupleCheck",
|
|
833
|
+
"IconDoupleCheckmark1",
|
|
834
|
+
"IconDoupleCheckmark1Small",
|
|
831
835
|
"IconElectrocardiogram",
|
|
832
836
|
"IconFeature",
|
|
833
837
|
"IconGauge",
|
|
@@ -2153,6 +2157,7 @@
|
|
|
2153
2157
|
"IconChart5": "chart-5, statistics, graph",
|
|
2154
2158
|
"IconChart6": "chart-6, statistics, graph",
|
|
2155
2159
|
"IconChart7": "chart-7, statistics, graph",
|
|
2160
|
+
"IconCheckCircle2": "check-circle-2, done, confirm, save, success",
|
|
2156
2161
|
"IconChecklist": "checklist, list",
|
|
2157
2162
|
"IconCheckmark1": "checkmark-1",
|
|
2158
2163
|
"IconCheckmark1Small": "checkmark-1-small",
|
|
@@ -2354,6 +2359,9 @@
|
|
|
2354
2359
|
"IconDotGrid1x3Vertical": "dot-grid-1x3-vertical, menu, drag, grab",
|
|
2355
2360
|
"IconDotGrid2x3": "dot-grid-2x3, menu, drag, grab",
|
|
2356
2361
|
"IconDotGrid3x3": "dot-grid-3x3, menu, drag, grab",
|
|
2362
|
+
"IconDoupleCheck": "douple-check",
|
|
2363
|
+
"IconDoupleCheckmark1": "douple-checkmark-1",
|
|
2364
|
+
"IconDoupleCheckmark1Small": "douple-checkmark-1-small",
|
|
2357
2365
|
"IconDownsize": "downsize, exit-full-screen, scale-down",
|
|
2358
2366
|
"IconDownsize2": "downsize-2, exit-full-screen, scale-down",
|
|
2359
2367
|
"IconDraft": "draft",
|
package/index.d.ts
CHANGED
|
@@ -372,6 +372,7 @@ export { IconChart4, default as IconChart4Default } from "./IconChart4";
|
|
|
372
372
|
export { IconChart5, default as IconChart5Default } from "./IconChart5";
|
|
373
373
|
export { IconChart6, default as IconChart6Default } from "./IconChart6";
|
|
374
374
|
export { IconChart7, default as IconChart7Default } from "./IconChart7";
|
|
375
|
+
export { IconCheckCircle2, default as IconCheckCircle2Default, } from "./IconCheckCircle2";
|
|
375
376
|
export { IconChecklist, default as IconChecklistDefault, } from "./IconChecklist";
|
|
376
377
|
export { IconCheckmark1, default as IconCheckmark1Default, } from "./IconCheckmark1";
|
|
377
378
|
export { IconCheckmark1Small, default as IconCheckmark1SmallDefault, } from "./IconCheckmark1Small";
|
|
@@ -573,6 +574,9 @@ export { IconDotGrid1x3Horizontal, default as IconDotGrid1x3HorizontalDefault, }
|
|
|
573
574
|
export { IconDotGrid1x3Vertical, default as IconDotGrid1x3VerticalDefault, } from "./IconDotGrid1x3Vertical";
|
|
574
575
|
export { IconDotGrid2x3, default as IconDotGrid2x3Default, } from "./IconDotGrid2x3";
|
|
575
576
|
export { IconDotGrid3x3, default as IconDotGrid3x3Default, } from "./IconDotGrid3x3";
|
|
577
|
+
export { IconDoupleCheck, default as IconDoupleCheckDefault, } from "./IconDoupleCheck";
|
|
578
|
+
export { IconDoupleCheckmark1, default as IconDoupleCheckmark1Default, } from "./IconDoupleCheckmark1";
|
|
579
|
+
export { IconDoupleCheckmark1Small, default as IconDoupleCheckmark1SmallDefault, } from "./IconDoupleCheckmark1Small";
|
|
576
580
|
export { IconDownsize, default as IconDownsizeDefault } from "./IconDownsize";
|
|
577
581
|
export { IconDownsize2, default as IconDownsize2Default, } from "./IconDownsize2";
|
|
578
582
|
export { IconDraft, default as IconDraftDefault } from "./IconDraft";
|