@central-icons-react-native/round-filled-radius-0-stroke-2 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.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z",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.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z\"\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,6dACF,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.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z",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.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z\"\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,6dACF,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 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,{IconDoupleCheck:()=>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:"M17.1969 4.40337C17.5263 3.96024 18.1531 3.86814 18.5964 4.19732C19.0396 4.52677 19.1318 5.15348 18.8024 5.59673L8.39713 19.5967C8.23642 19.8129 7.99515 19.9552 7.72819 19.9913C7.46123 20.0272 7.19038 19.9541 6.97819 19.7881L1.38346 15.4131C0.94868 15.0729 0.871516 14.4438 1.21159 14.0088C1.55171 13.5739 2.18083 13.497 2.61588 13.837L7.40299 17.5801L17.1969 4.40337Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M21.1969 4.40337C21.5263 3.96026 22.1531 3.86815 22.5964 4.19732C23.0396 4.52678 23.1318 5.15349 22.8024 5.59673L12.3971 19.5967C12.0677 20.0399 11.441 20.1322 10.9977 19.8028C10.5548 19.4733 10.4623 18.8465 10.7917 18.4034L21.1969 4.40337Z",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=\"M17.1969 4.40337C17.5263 3.96024 18.1531 3.86814 18.5964 4.19732C19.0396 4.52677 19.1318 5.15348 18.8024 5.59673L8.39713 19.5967C8.23642 19.8129 7.99515 19.9552 7.72819 19.9913C7.46123 20.0272 7.19038 19.9541 6.97819 19.7881L1.38346 15.4131C0.94868 15.0729 0.871516 14.4438 1.21159 14.0088C1.55171 13.5739 2.18083 13.497 2.61588 13.837L7.40299 17.5801L17.1969 4.40337Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1969 4.40337C21.5263 3.96026 22.1531 3.86815 22.5964 4.19732C23.0396 4.52678 23.1318 5.15349 22.8024 5.59673L12.3971 19.5967C12.0677 20.0399 11.441 20.1322 10.9977 19.8028C10.5548 19.4733 10.4623 18.8465 10.7917 18.4034L21.1969 4.40337Z\"\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,mXACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mPACF,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 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:"M17.1969 4.40337C17.5263 3.96024 18.1531 3.86814 18.5964 4.19732C19.0396 4.52677 19.1318 5.15348 18.8024 5.59673L8.39713 19.5967C8.23642 19.8129 7.99515 19.9552 7.72819 19.9913C7.46123 20.0272 7.19038 19.9541 6.97819 19.7881L1.38346 15.4131C0.94868 15.0729 0.871516 14.4438 1.21159 14.0088C1.55171 13.5739 2.18083 13.497 2.61588 13.837L7.40299 17.5801L17.1969 4.40337Z",fill:"currentColor"}),e.createElement(n,{d:"M21.1969 4.40337C21.5263 3.96026 22.1531 3.86815 22.5964 4.19732C23.0396 4.52678 23.1318 5.15349 22.8024 5.59673L12.3971 19.5967C12.0677 20.0399 11.441 20.1322 10.9977 19.8028C10.5548 19.4733 10.4623 18.8465 10.7917 18.4034L21.1969 4.40337Z",fill:"currentColor"})),P=a;export{a 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=\"M17.1969 4.40337C17.5263 3.96024 18.1531 3.86814 18.5964 4.19732C19.0396 4.52677 19.1318 5.15348 18.8024 5.59673L8.39713 19.5967C8.23642 19.8129 7.99515 19.9552 7.72819 19.9913C7.46123 20.0272 7.19038 19.9541 6.97819 19.7881L1.38346 15.4131C0.94868 15.0729 0.871516 14.4438 1.21159 14.0088C1.55171 13.5739 2.18083 13.497 2.61588 13.837L7.40299 17.5801L17.1969 4.40337Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1969 4.40337C21.5263 3.96026 22.1531 3.86815 22.5964 4.19732C23.0396 4.52678 23.1318 5.15349 22.8024 5.59673L12.3971 19.5967C12.0677 20.0399 11.441 20.1322 10.9977 19.8028C10.5548 19.4733 10.4623 18.8465 10.7917 18.4034L21.1969 4.40337Z\"\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,mXACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mPACF,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 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,{IconDoupleCheckmark1:()=>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:"M16.1588 4.45922C16.4575 3.995 17.0762 3.86101 17.5406 4.15942C18.0049 4.45816 18.139 5.0768 17.8404 5.54126L8.84043 19.5413C8.66628 19.8117 8.37263 19.9826 8.05137 19.9993C7.72997 20.0158 7.41941 19.8766 7.21836 19.6252L2.21836 13.3752C1.87352 12.9441 1.94366 12.314 2.37461 11.969C2.80584 11.624 3.43583 11.6941 3.78086 12.1252L7.91074 17.2883L16.1588 4.45922Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M20.1588 4.45922C20.4575 3.995 21.0762 3.86101 21.5406 4.15942C22.0049 4.45816 22.139 5.0768 21.8404 5.54126L12.8404 19.5413C12.5416 20.0053 11.923 20.1396 11.4586 19.8411C10.9946 19.5423 10.8605 18.9236 11.1588 18.4592L20.1588 4.45922Z",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=\"M16.1588 4.45922C16.4575 3.995 17.0762 3.86101 17.5406 4.15942C18.0049 4.45816 18.139 5.0768 17.8404 5.54126L8.84043 19.5413C8.66628 19.8117 8.37263 19.9826 8.05137 19.9993C7.72997 20.0158 7.41941 19.8766 7.21836 19.6252L2.21836 13.3752C1.87352 12.9441 1.94366 12.314 2.37461 11.969C2.80584 11.624 3.43583 11.6941 3.78086 12.1252L7.91074 17.2883L16.1588 4.45922Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1588 4.45922C20.4575 3.995 21.0762 3.86101 21.5406 4.15942C22.0049 4.45816 22.139 5.0768 21.8404 5.54126L12.8404 19.5413C12.5416 20.0053 11.923 20.1396 11.4586 19.8411C10.9946 19.5423 10.8605 18.9236 11.1588 18.4592L20.1588 4.45922Z\"\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,6WACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+OACF,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 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:"M16.1588 4.45922C16.4575 3.995 17.0762 3.86101 17.5406 4.15942C18.0049 4.45816 18.139 5.0768 17.8404 5.54126L8.84043 19.5413C8.66628 19.8117 8.37263 19.9826 8.05137 19.9993C7.72997 20.0158 7.41941 19.8766 7.21836 19.6252L2.21836 13.3752C1.87352 12.9441 1.94366 12.314 2.37461 11.969C2.80584 11.624 3.43583 11.6941 3.78086 12.1252L7.91074 17.2883L16.1588 4.45922Z",fill:"currentColor"}),e.createElement(n,{d:"M20.1588 4.45922C20.4575 3.995 21.0762 3.86101 21.5406 4.15942C22.0049 4.45816 22.139 5.0768 21.8404 5.54126L12.8404 19.5413C12.5416 20.0053 11.923 20.1396 11.4586 19.8411C10.9946 19.5423 10.8605 18.9236 11.1588 18.4592L20.1588 4.45922Z",fill:"currentColor"})),P=a;export{a 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=\"M16.1588 4.45922C16.4575 3.995 17.0762 3.86101 17.5406 4.15942C18.0049 4.45816 18.139 5.0768 17.8404 5.54126L8.84043 19.5413C8.66628 19.8117 8.37263 19.9826 8.05137 19.9993C7.72997 20.0158 7.41941 19.8766 7.21836 19.6252L2.21836 13.3752C1.87352 12.9441 1.94366 12.314 2.37461 11.969C2.80584 11.624 3.43583 11.6941 3.78086 12.1252L7.91074 17.2883L16.1588 4.45922Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1588 4.45922C20.4575 3.995 21.0762 3.86101 21.5406 4.15942C22.0049 4.45816 22.139 5.0768 21.8404 5.54126L12.8404 19.5413C12.5416 20.0053 11.923 20.1396 11.4586 19.8411C10.9946 19.5423 10.8605 18.9236 11.1588 18.4592L20.1588 4.45922Z\"\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,6WACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+OACF,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:"M13.1524 7.47008C13.4452 7.00203 14.0621 6.86006 14.5303 7.1527C14.9983 7.44553 15.1403 8.06245 14.8477 8.53063L9.84772 16.5306C9.68622 16.7888 9.41588 16.959 9.11334 16.9935C8.8106 17.028 8.50851 16.9228 8.29303 16.7074L5.29303 13.7074C4.90252 13.3169 4.90254 12.6839 5.29303 12.2933C5.68356 11.9028 6.31657 11.9028 6.70709 12.2933L8.81745 14.4037L13.1524 7.47008Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M17.1524 7.47008C17.4452 7.00203 18.0621 6.86006 18.5303 7.1527C18.9983 7.44553 19.1403 8.06245 18.8477 8.53063L13.8477 16.5306C13.5549 16.9986 12.938 17.1405 12.4698 16.848C12.0018 16.5552 11.8598 15.9383 12.1524 15.4701L17.1524 7.47008Z",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=\"M13.1524 7.47008C13.4452 7.00203 14.0621 6.86006 14.5303 7.1527C14.9983 7.44553 15.1403 8.06245 14.8477 8.53063L9.84772 16.5306C9.68622 16.7888 9.41588 16.959 9.11334 16.9935C8.8106 17.028 8.50851 16.9228 8.29303 16.7074L5.29303 13.7074C4.90252 13.3169 4.90254 12.6839 5.29303 12.2933C5.68356 11.9028 6.31657 11.9028 6.70709 12.2933L8.81745 14.4037L13.1524 7.47008Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.1524 7.47008C17.4452 7.00203 18.0621 6.86006 18.5303 7.1527C18.9983 7.44553 19.1403 8.06245 18.8477 8.53063L13.8477 16.5306C13.5549 16.9986 12.938 17.1405 12.4698 16.848C12.0018 16.5552 11.8598 15.9383 12.1524 15.4701L17.1524 7.47008Z\"\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,gXACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iPACF,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:"M13.1524 7.47008C13.4452 7.00203 14.0621 6.86006 14.5303 7.1527C14.9983 7.44553 15.1403 8.06245 14.8477 8.53063L9.84772 16.5306C9.68622 16.7888 9.41588 16.959 9.11334 16.9935C8.8106 17.028 8.50851 16.9228 8.29303 16.7074L5.29303 13.7074C4.90252 13.3169 4.90254 12.6839 5.29303 12.2933C5.68356 11.9028 6.31657 11.9028 6.70709 12.2933L8.81745 14.4037L13.1524 7.47008Z",fill:"currentColor"}),e.createElement(n,{d:"M17.1524 7.47008C17.4452 7.00203 18.0621 6.86006 18.5303 7.1527C18.9983 7.44553 19.1403 8.06245 18.8477 8.53063L13.8477 16.5306C13.5549 16.9986 12.938 17.1405 12.4698 16.848C12.0018 16.5552 11.8598 15.9383 12.1524 15.4701L17.1524 7.47008Z",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=\"M13.1524 7.47008C13.4452 7.00203 14.0621 6.86006 14.5303 7.1527C14.9983 7.44553 15.1403 8.06245 14.8477 8.53063L9.84772 16.5306C9.68622 16.7888 9.41588 16.959 9.11334 16.9935C8.8106 17.028 8.50851 16.9228 8.29303 16.7074L5.29303 13.7074C4.90252 13.3169 4.90254 12.6839 5.29303 12.2933C5.68356 11.9028 6.31657 11.9028 6.70709 12.2933L8.81745 14.4037L13.1524 7.47008Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.1524 7.47008C17.4452 7.00203 18.0621 6.86006 18.5303 7.1527C18.9983 7.44553 19.1403 8.06245 18.8477 8.53063L13.8477 16.5306C13.5549 16.9986 12.938 17.1405 12.4698 16.848C12.0018 16.5552 11.8598 15.9383 12.1524 15.4701L17.1524 7.47008Z\"\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,gXACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iPACF,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-0-stroke-2",
|
|
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.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z\" fill=\"currentColor\"/>",
|
|
5242
|
+
"iconName": "check-circle-2, done, confirm, save, success",
|
|
5243
|
+
"variant": {
|
|
5244
|
+
"join": "round",
|
|
5245
|
+
"filled": "on",
|
|
5246
|
+
"radius": "0",
|
|
5247
|
+
"stroke": "2"
|
|
5248
|
+
},
|
|
5249
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
5250
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
5251
|
+
"componentName": "IconCheckCircle2"
|
|
5252
|
+
},
|
|
5239
5253
|
{
|
|
5240
5254
|
"category": "Interface General",
|
|
5241
5255
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.10001 5.20006C9.54184 5.53143 9.63139 6.15823 9.30001 6.60006L6.30001 10.6001C5.98157 11.0246 5.38691 11.1265 4.94531 10.8321L3.44531 9.83211C2.98579 9.52576 2.86161 8.90489 3.16796 8.44536C3.47432 7.98583 4.09519 7.86166 4.55471 8.16801L5.26761 8.64327L7.70001 5.40006C8.03139 4.95823 8.65819 4.86869 9.10001 5.20006ZM12 8.00006C12 7.44777 12.4477 7.00006 13 7.00006H20C20.5523 7.00006 21 7.44777 21 8.00006C21 8.55234 20.5523 9.00006 20 9.00006H13C12.4477 9.00006 12 8.55234 12 8.00006ZM9.10001 13.2001C9.54184 13.5314 9.63139 14.1582 9.30001 14.6001L6.30001 18.6001C5.98157 19.0246 5.38691 19.1265 4.94531 18.8321L3.44531 17.8321C2.98579 17.5258 2.86161 16.9049 3.16796 16.4454C3.47432 15.9858 4.09519 15.8617 4.55471 16.168L5.26761 16.6433L7.70001 13.4001C8.03139 12.9582 8.65819 12.8687 9.10001 13.2001ZM12 16.0001C12 15.4478 12.4477 15.0001 13 15.0001H20C20.5523 15.0001 21 15.4478 21 16.0001C21 16.5523 20.5523 17.0001 20 17.0001H13C12.4477 17.0001 12 16.5523 12 16.0001Z\" fill=\"currentColor\"/>",
|
|
@@ -8050,6 +8064,48 @@
|
|
|
8050
8064
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
8051
8065
|
"componentName": "IconDotGrid3x3"
|
|
8052
8066
|
},
|
|
8067
|
+
{
|
|
8068
|
+
"category": "Interface General",
|
|
8069
|
+
"svg": "<path d=\"M17.1969 4.40337C17.5263 3.96024 18.1531 3.86814 18.5964 4.19732C19.0396 4.52677 19.1318 5.15348 18.8024 5.59673L8.39713 19.5967C8.23642 19.8129 7.99515 19.9552 7.72819 19.9913C7.46123 20.0272 7.19038 19.9541 6.97819 19.7881L1.38346 15.4131C0.94868 15.0729 0.871516 14.4438 1.21159 14.0088C1.55171 13.5739 2.18083 13.497 2.61588 13.837L7.40299 17.5801L17.1969 4.40337Z\" fill=\"currentColor\"/><path d=\"M21.1969 4.40337C21.5263 3.96026 22.1531 3.86815 22.5964 4.19732C23.0396 4.52678 23.1318 5.15349 22.8024 5.59673L12.3971 19.5967C12.0677 20.0399 11.441 20.1322 10.9977 19.8028C10.5548 19.4733 10.4623 18.8465 10.7917 18.4034L21.1969 4.40337Z\" fill=\"currentColor\"/>",
|
|
8070
|
+
"iconName": "douple-check",
|
|
8071
|
+
"variant": {
|
|
8072
|
+
"join": "round",
|
|
8073
|
+
"filled": "on",
|
|
8074
|
+
"radius": "0",
|
|
8075
|
+
"stroke": "2"
|
|
8076
|
+
},
|
|
8077
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8078
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
8079
|
+
"componentName": "IconDoupleCheck"
|
|
8080
|
+
},
|
|
8081
|
+
{
|
|
8082
|
+
"category": "Interface General",
|
|
8083
|
+
"svg": "<path d=\"M16.1588 4.45922C16.4575 3.995 17.0762 3.86101 17.5406 4.15942C18.0049 4.45816 18.139 5.0768 17.8404 5.54126L8.84043 19.5413C8.66628 19.8117 8.37263 19.9826 8.05137 19.9993C7.72997 20.0158 7.41941 19.8766 7.21836 19.6252L2.21836 13.3752C1.87352 12.9441 1.94366 12.314 2.37461 11.969C2.80584 11.624 3.43583 11.6941 3.78086 12.1252L7.91074 17.2883L16.1588 4.45922Z\" fill=\"currentColor\"/><path d=\"M20.1588 4.45922C20.4575 3.995 21.0762 3.86101 21.5406 4.15942C22.0049 4.45816 22.139 5.0768 21.8404 5.54126L12.8404 19.5413C12.5416 20.0053 11.923 20.1396 11.4586 19.8411C10.9946 19.5423 10.8605 18.9236 11.1588 18.4592L20.1588 4.45922Z\" fill=\"currentColor\"/>",
|
|
8084
|
+
"iconName": "douple-checkmark-1",
|
|
8085
|
+
"variant": {
|
|
8086
|
+
"join": "round",
|
|
8087
|
+
"filled": "on",
|
|
8088
|
+
"radius": "0",
|
|
8089
|
+
"stroke": "2"
|
|
8090
|
+
},
|
|
8091
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8092
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
8093
|
+
"componentName": "IconDoupleCheckmark1"
|
|
8094
|
+
},
|
|
8095
|
+
{
|
|
8096
|
+
"category": "Interface General",
|
|
8097
|
+
"svg": "<path d=\"M13.1524 7.47008C13.4452 7.00203 14.0621 6.86006 14.5303 7.1527C14.9983 7.44553 15.1403 8.06245 14.8477 8.53063L9.84772 16.5306C9.68622 16.7888 9.41588 16.959 9.11334 16.9935C8.8106 17.028 8.50851 16.9228 8.29303 16.7074L5.29303 13.7074C4.90252 13.3169 4.90254 12.6839 5.29303 12.2933C5.68356 11.9028 6.31657 11.9028 6.70709 12.2933L8.81745 14.4037L13.1524 7.47008Z\" fill=\"currentColor\"/><path d=\"M17.1524 7.47008C17.4452 7.00203 18.0621 6.86006 18.5303 7.1527C18.9983 7.44553 19.1403 8.06245 18.8477 8.53063L13.8477 16.5306C13.5549 16.9986 12.938 17.1405 12.4698 16.848C12.0018 16.5552 11.8598 15.9383 12.1524 15.4701L17.1524 7.47008Z\" fill=\"currentColor\"/>",
|
|
8098
|
+
"iconName": "douple-checkmark-1-small",
|
|
8099
|
+
"variant": {
|
|
8100
|
+
"join": "round",
|
|
8101
|
+
"filled": "on",
|
|
8102
|
+
"radius": "0",
|
|
8103
|
+
"stroke": "2"
|
|
8104
|
+
},
|
|
8105
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8106
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
8107
|
+
"componentName": "IconDoupleCheckmark1Small"
|
|
8108
|
+
},
|
|
8053
8109
|
{
|
|
8054
8110
|
"category": "Photography & Video",
|
|
8055
8111
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 3C9.55228 3 10 3.44772 10 4V9C10 9.55228 9.55228 10 9 10H4C3.44772 10 3 9.55228 3 9C3 8.44772 3.44772 8 4 8H8V4C8 3.44772 8.44772 3 9 3ZM15 3C15.5523 3 16 3.44772 16 4V8H20C20.5523 8 21 8.44772 21 9C21 9.55228 20.5523 10 20 10H15C14.4477 10 14 9.55228 14 9V4C14 3.44772 14.4477 3 15 3ZM3 15C3 14.4477 3.44772 14 4 14H9C9.55228 14 10 14.4477 10 15V20C10 20.5523 9.55228 21 9 21C8.44772 21 8 20.5523 8 20V16H4C3.44772 16 3 15.5523 3 15ZM14 15C14 14.4477 14.4477 14 15 14H20C20.5523 14 21 14.4477 21 15C21 15.5523 20.5523 16 20 16H16V20C16 20.5523 15.5523 21 15 21C14.4477 21 14 20.5523 14 20V15Z\" 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-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 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";
|