@central-icons-react-native/round-filled-radius-1-stroke-1.5 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.667 8.12695C15.3228 7.89661 14.8574 7.98889 14.627 8.33301L10.4482 14.5723L8.28125 12.3945C7.98911 12.1009 7.51434 12.0995 7.2207 12.3916C6.92733 12.6838 6.9267 13.1586 7.21875 13.4521L10.0312 16.2793C10.1897 16.4384 10.4112 16.5177 10.6348 16.4961C10.8584 16.4744 11.0605 16.3537 11.1855 16.167L15.873 9.16699C16.1034 8.82283 16.0111 8.35739 15.667 8.12695Z",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.667 8.12695C15.3228 7.89661 14.8574 7.98889 14.627 8.33301L10.4482 14.5723L8.28125 12.3945C7.98911 12.1009 7.51434 12.0995 7.2207 12.3916C6.92733 12.6838 6.9267 13.1586 7.21875 13.4521L10.0312 16.2793C10.1897 16.4384 10.4112 16.5177 10.6348 16.4961C10.8584 16.4744 11.0605 16.3537 11.1855 16.167L15.873 9.16699C16.1034 8.82283 16.0111 8.35739 15.667 8.12695Z\"\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.667 8.12695C15.3228 7.89661 14.8574 7.98889 14.627 8.33301L10.4482 14.5723L8.28125 12.3945C7.98911 12.1009 7.51434 12.0995 7.2207 12.3916C6.92733 12.6838 6.9267 13.1586 7.21875 13.4521L10.0312 16.2793C10.1897 16.4384 10.4112 16.5177 10.6348 16.4961C10.8584 16.4744 11.0605 16.3537 11.1855 16.167L15.873 9.16699C16.1034 8.82283 16.0111 8.35739 15.667 8.12695Z",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.667 8.12695C15.3228 7.89661 14.8574 7.98889 14.627 8.33301L10.4482 14.5723L8.28125 12.3945C7.98911 12.1009 7.51434 12.0995 7.2207 12.3916C6.92733 12.6838 6.9267 13.1586 7.21875 13.4521L10.0312 16.2793C10.1897 16.4384 10.4112 16.5177 10.6348 16.4961C10.8584 16.4744 11.0605 16.3537 11.1855 16.167L15.873 9.16699C16.1034 8.82283 16.0111 8.35739 15.667 8.12695Z\"\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.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z",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.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z\"\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,8WACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+OACF,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.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z",fill:"currentColor"}),e.createElement(n,{d:"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z",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.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z\"\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,8WACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+OACF,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:"M20.6191 4.34473C20.8431 3.9964 21.3069 3.8954 21.6553 4.11914C22.0037 4.3431 22.1047 4.80686 21.8809 5.15527L12.5596 19.6553C12.3356 20.0036 11.8718 20.1047 11.5234 19.8809C11.1751 19.6569 11.0741 19.1931 11.2979 18.8447L20.6191 4.34473ZM16.6191 4.34473C16.8431 3.99636 17.3069 3.89532 17.6553 4.11914C18.0036 4.34309 18.1047 4.80687 17.8809 5.15527L8.55957 19.6553C8.42906 19.8582 8.20871 19.9864 7.96777 19.999C7.72669 20.0115 7.49361 19.9072 7.34277 19.7188L2.16406 13.2451C1.90563 12.9218 1.95821 12.4502 2.28125 12.1914C2.6047 11.9326 3.07718 11.9851 3.33594 12.3086L7.8623 17.9658L16.6191 4.34473Z",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=\"M20.6191 4.34473C20.8431 3.9964 21.3069 3.8954 21.6553 4.11914C22.0037 4.3431 22.1047 4.80686 21.8809 5.15527L12.5596 19.6553C12.3356 20.0036 11.8718 20.1047 11.5234 19.8809C11.1751 19.6569 11.0741 19.1931 11.2979 18.8447L20.6191 4.34473ZM16.6191 4.34473C16.8431 3.99636 17.3069 3.89532 17.6553 4.11914C18.0036 4.34309 18.1047 4.80687 17.8809 5.15527L8.55957 19.6553C8.42906 19.8582 8.20871 19.9864 7.96777 19.999C7.72669 20.0115 7.49361 19.9072 7.34277 19.7188L2.16406 13.2451C1.90563 12.9218 1.95821 12.4502 2.28125 12.1914C2.6047 11.9326 3.07718 11.9851 3.33594 12.3086L7.8623 17.9658L16.6191 4.34473Z\"\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,+lBACF,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:"M20.6191 4.34473C20.8431 3.9964 21.3069 3.8954 21.6553 4.11914C22.0037 4.3431 22.1047 4.80686 21.8809 5.15527L12.5596 19.6553C12.3356 20.0036 11.8718 20.1047 11.5234 19.8809C11.1751 19.6569 11.0741 19.1931 11.2979 18.8447L20.6191 4.34473ZM16.6191 4.34473C16.8431 3.99636 17.3069 3.89532 17.6553 4.11914C18.0036 4.34309 18.1047 4.80687 17.8809 5.15527L8.55957 19.6553C8.42906 19.8582 8.20871 19.9864 7.96777 19.999C7.72669 20.0115 7.49361 19.9072 7.34277 19.7188L2.16406 13.2451C1.90563 12.9218 1.95821 12.4502 2.28125 12.1914C2.6047 11.9326 3.07718 11.9851 3.33594 12.3086L7.8623 17.9658L16.6191 4.34473Z",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=\"M20.6191 4.34473C20.8431 3.9964 21.3069 3.8954 21.6553 4.11914C22.0037 4.3431 22.1047 4.80686 21.8809 5.15527L12.5596 19.6553C12.3356 20.0036 11.8718 20.1047 11.5234 19.8809C11.1751 19.6569 11.0741 19.1931 11.2979 18.8447L20.6191 4.34473ZM16.6191 4.34473C16.8431 3.99636 17.3069 3.89532 17.6553 4.11914C18.0036 4.34309 18.1047 4.80687 17.8809 5.15527L8.55957 19.6553C8.42906 19.8582 8.20871 19.9864 7.96777 19.999C7.72669 20.0115 7.49361 19.9072 7.34277 19.7188L2.16406 13.2451C1.90563 12.9218 1.95821 12.4502 2.28125 12.1914C2.6047 11.9326 3.07718 11.9851 3.33594 12.3086L7.8623 17.9658L16.6191 4.34473Z\"\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,+lBACF,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.6143 7.35242C13.8339 7.00124 14.2963 6.89462 14.6475 7.11414C14.9986 7.33372 15.1053 7.79615 14.8858 8.14734L9.57329 16.6473C9.45217 16.841 9.24949 16.9691 9.02251 16.995C8.79546 17.0209 8.56889 16.9417 8.40728 16.7802L5.21978 13.5927C4.92689 13.2998 4.92691 12.825 5.21978 12.5321C5.51267 12.2392 5.98743 12.2392 6.28032 12.5321L8.80083 15.0526L13.6143 7.35242Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M17.6143 7.35242C17.8339 7.00124 18.2963 6.89462 18.6475 7.11414C18.9986 7.33372 19.1053 7.79615 18.8858 8.14734L13.5733 16.6473C13.3537 16.9984 12.8913 17.105 12.5401 16.8856C12.1889 16.6661 12.0823 16.2036 12.3018 15.8524L17.6143 7.35242Z",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.6143 7.35242C13.8339 7.00124 14.2963 6.89462 14.6475 7.11414C14.9986 7.33372 15.1053 7.79615 14.8858 8.14734L9.57329 16.6473C9.45217 16.841 9.24949 16.9691 9.02251 16.995C8.79546 17.0209 8.56889 16.9417 8.40728 16.7802L5.21978 13.5927C4.92689 13.2998 4.92691 12.825 5.21978 12.5321C5.51267 12.2392 5.98743 12.2392 6.28032 12.5321L8.80083 15.0526L13.6143 7.35242Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.6143 7.35242C17.8339 7.00124 18.2963 6.89462 18.6475 7.11414C18.9986 7.33372 19.1053 7.79615 18.8858 8.14734L13.5733 16.6473C13.3537 16.9984 12.8913 17.105 12.5401 16.8856C12.1889 16.6661 12.0823 16.2036 12.3018 15.8524L17.6143 7.35242Z\"\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,iXACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mPACF,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.6143 7.35242C13.8339 7.00124 14.2963 6.89462 14.6475 7.11414C14.9986 7.33372 15.1053 7.79615 14.8858 8.14734L9.57329 16.6473C9.45217 16.841 9.24949 16.9691 9.02251 16.995C8.79546 17.0209 8.56889 16.9417 8.40728 16.7802L5.21978 13.5927C4.92689 13.2998 4.92691 12.825 5.21978 12.5321C5.51267 12.2392 5.98743 12.2392 6.28032 12.5321L8.80083 15.0526L13.6143 7.35242Z",fill:"currentColor"}),e.createElement(n,{d:"M17.6143 7.35242C17.8339 7.00124 18.2963 6.89462 18.6475 7.11414C18.9986 7.33372 19.1053 7.79615 18.8858 8.14734L13.5733 16.6473C13.3537 16.9984 12.8913 17.105 12.5401 16.8856C12.1889 16.6661 12.0823 16.2036 12.3018 15.8524L17.6143 7.35242Z",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.6143 7.35242C13.8339 7.00124 14.2963 6.89462 14.6475 7.11414C14.9986 7.33372 15.1053 7.79615 14.8858 8.14734L9.57329 16.6473C9.45217 16.841 9.24949 16.9691 9.02251 16.995C8.79546 17.0209 8.56889 16.9417 8.40728 16.7802L5.21978 13.5927C4.92689 13.2998 4.92691 12.825 5.21978 12.5321C5.51267 12.2392 5.98743 12.2392 6.28032 12.5321L8.80083 15.0526L13.6143 7.35242Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.6143 7.35242C17.8339 7.00124 18.2963 6.89462 18.6475 7.11414C18.9986 7.33372 19.1053 7.79615 18.8858 8.14734L13.5733 16.6473C13.3537 16.9984 12.8913 17.105 12.5401 16.8856C12.1889 16.6661 12.0823 16.2036 12.3018 15.8524L17.6143 7.35242Z\"\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,iXACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mPACF,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-1-stroke-1.5",
|
|
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.667 8.12695C15.3228 7.89661 14.8574 7.98889 14.627 8.33301L10.4482 14.5723L8.28125 12.3945C7.98911 12.1009 7.51434 12.0995 7.2207 12.3916C6.92733 12.6838 6.9267 13.1586 7.21875 13.4521L10.0312 16.2793C10.1897 16.4384 10.4112 16.5177 10.6348 16.4961C10.8584 16.4744 11.0605 16.3537 11.1855 16.167L15.873 9.16699C16.1034 8.82283 16.0111 8.35739 15.667 8.12695Z\" fill=\"currentColor\"/>",
|
|
5242
|
+
"iconName": "check-circle-2, done, confirm, save, success",
|
|
5243
|
+
"variant": {
|
|
5244
|
+
"join": "round",
|
|
5245
|
+
"filled": "on",
|
|
5246
|
+
"radius": "1",
|
|
5247
|
+
"stroke": "1.5"
|
|
5248
|
+
},
|
|
5249
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
5250
|
+
"packageName": "round-filled-radius-1-stroke-1.5",
|
|
5251
|
+
"componentName": "IconCheckCircle2"
|
|
5252
|
+
},
|
|
5239
5253
|
{
|
|
5240
5254
|
"category": "Interface General",
|
|
5241
5255
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.19644 4.64738C9.52928 4.89393 9.59923 5.36362 9.35268 5.69647L6.01935 10.1965C5.7804 10.5191 5.32981 10.5963 4.99708 10.3717L3.33041 9.24668C2.98709 9.01494 2.89664 8.54876 3.12838 8.20544C3.36012 7.86212 3.8263 7.77167 4.16962 8.00341L5.2413 8.72679L8.14735 4.80363C8.3939 4.47078 8.86359 4.40083 9.19644 4.64738ZM11 7.75005C11 7.33583 11.3358 7.00005 11.75 7.00005H20.25C20.6642 7.00005 21 7.33583 21 7.75005C21 8.16426 20.6642 8.50005 20.25 8.50005H11.75C11.3358 8.50005 11 8.16426 11 7.75005ZM9.19644 13.6474C9.52928 13.8939 9.59923 14.3636 9.35268 14.6965L6.01935 19.1965C5.7804 19.5191 5.32981 19.5963 4.99708 19.3717L3.33041 18.2467C2.98709 18.0149 2.89664 17.5488 3.12838 17.2054C3.36012 16.8621 3.8263 16.7717 4.16962 17.0034L5.2413 17.7268L8.14735 13.8036C8.3939 13.4708 8.86359 13.4008 9.19644 13.6474ZM11 16.25C11 15.8358 11.3358 15.5 11.75 15.5H20.25C20.6642 15.5 21 15.8358 21 16.25C21 16.6643 20.6642 17 20.25 17H11.75C11.3358 17 11 16.6643 11 16.25Z\" fill=\"currentColor\"/>",
|
|
@@ -8050,6 +8064,48 @@
|
|
|
8050
8064
|
"packageName": "round-filled-radius-1-stroke-1.5",
|
|
8051
8065
|
"componentName": "IconDotGrid3x3"
|
|
8052
8066
|
},
|
|
8067
|
+
{
|
|
8068
|
+
"category": "Interface General",
|
|
8069
|
+
"svg": "<path d=\"M17.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z\" fill=\"currentColor\"/><path d=\"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z\" fill=\"currentColor\"/>",
|
|
8070
|
+
"iconName": "douple-check",
|
|
8071
|
+
"variant": {
|
|
8072
|
+
"join": "round",
|
|
8073
|
+
"filled": "on",
|
|
8074
|
+
"radius": "1",
|
|
8075
|
+
"stroke": "1.5"
|
|
8076
|
+
},
|
|
8077
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8078
|
+
"packageName": "round-filled-radius-1-stroke-1.5",
|
|
8079
|
+
"componentName": "IconDoupleCheck"
|
|
8080
|
+
},
|
|
8081
|
+
{
|
|
8082
|
+
"category": "Interface General",
|
|
8083
|
+
"svg": "<path d=\"M20.6191 4.34473C20.8431 3.9964 21.3069 3.8954 21.6553 4.11914C22.0037 4.3431 22.1047 4.80686 21.8809 5.15527L12.5596 19.6553C12.3356 20.0036 11.8718 20.1047 11.5234 19.8809C11.1751 19.6569 11.0741 19.1931 11.2979 18.8447L20.6191 4.34473ZM16.6191 4.34473C16.8431 3.99636 17.3069 3.89532 17.6553 4.11914C18.0036 4.34309 18.1047 4.80687 17.8809 5.15527L8.55957 19.6553C8.42906 19.8582 8.20871 19.9864 7.96777 19.999C7.72669 20.0115 7.49361 19.9072 7.34277 19.7188L2.16406 13.2451C1.90563 12.9218 1.95821 12.4502 2.28125 12.1914C2.6047 11.9326 3.07718 11.9851 3.33594 12.3086L7.8623 17.9658L16.6191 4.34473Z\" fill=\"currentColor\"/>",
|
|
8084
|
+
"iconName": "douple-checkmark-1",
|
|
8085
|
+
"variant": {
|
|
8086
|
+
"join": "round",
|
|
8087
|
+
"filled": "on",
|
|
8088
|
+
"radius": "1",
|
|
8089
|
+
"stroke": "1.5"
|
|
8090
|
+
},
|
|
8091
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8092
|
+
"packageName": "round-filled-radius-1-stroke-1.5",
|
|
8093
|
+
"componentName": "IconDoupleCheckmark1"
|
|
8094
|
+
},
|
|
8095
|
+
{
|
|
8096
|
+
"category": "Interface General",
|
|
8097
|
+
"svg": "<path d=\"M13.6143 7.35242C13.8339 7.00124 14.2963 6.89462 14.6475 7.11414C14.9986 7.33372 15.1053 7.79615 14.8858 8.14734L9.57329 16.6473C9.45217 16.841 9.24949 16.9691 9.02251 16.995C8.79546 17.0209 8.56889 16.9417 8.40728 16.7802L5.21978 13.5927C4.92689 13.2998 4.92691 12.825 5.21978 12.5321C5.51267 12.2392 5.98743 12.2392 6.28032 12.5321L8.80083 15.0526L13.6143 7.35242Z\" fill=\"currentColor\"/><path d=\"M17.6143 7.35242C17.8339 7.00124 18.2963 6.89462 18.6475 7.11414C18.9986 7.33372 19.1053 7.79615 18.8858 8.14734L13.5733 16.6473C13.3537 16.9984 12.8913 17.105 12.5401 16.8856C12.1889 16.6661 12.0823 16.2036 12.3018 15.8524L17.6143 7.35242Z\" fill=\"currentColor\"/>",
|
|
8098
|
+
"iconName": "douple-checkmark-1-small",
|
|
8099
|
+
"variant": {
|
|
8100
|
+
"join": "round",
|
|
8101
|
+
"filled": "on",
|
|
8102
|
+
"radius": "1",
|
|
8103
|
+
"stroke": "1.5"
|
|
8104
|
+
},
|
|
8105
|
+
"createdAt": "2025-11-24T18:01:49.091762+00:00",
|
|
8106
|
+
"packageName": "round-filled-radius-1-stroke-1.5",
|
|
8107
|
+
"componentName": "IconDoupleCheckmark1Small"
|
|
8108
|
+
},
|
|
8053
8109
|
{
|
|
8054
8110
|
"category": "Photography & Video",
|
|
8055
8111
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8.25C10 9.2165 9.2165 10 8.25 10H3.75C3.33579 10 3 9.66421 3 9.25C3 8.83579 3.33579 8.5 3.75 8.5H8.25C8.38807 8.5 8.5 8.38807 8.5 8.25V3.75C8.5 3.33579 8.83579 3 9.25 3C9.66421 3 10 3.33579 10 3.75V8.25Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 9.25C21 9.66421 20.6642 10 20.25 10H15.75C14.7835 10 14 9.2165 14 8.25V3.75C14 3.33579 14.3358 3 14.75 3C15.1642 3 15.5 3.33579 15.5 3.75V8.25C15.5 8.38807 15.6119 8.5 15.75 8.5H20.25C20.6642 8.5 21 8.83579 21 9.25Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.75 21C14.3358 21 14 20.6642 14 20.25V15.75C14 14.7835 14.7835 14 15.75 14H20.25C20.6642 14 21 14.3358 21 14.75C21 15.1642 20.6642 15.5 20.25 15.5H15.75C15.6119 15.5 15.5 15.6119 15.5 15.75V20.25C15.5 20.6642 15.1642 21 14.75 21Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.25 21C8.83579 21 8.5 20.6642 8.5 20.25V15.75C8.5 15.6119 8.38807 15.5 8.25 15.5H3.75C3.33579 15.5 3 15.1642 3 14.75C3 14.3358 3.33579 14 3.75 14H8.25C9.2165 14 10 14.7835 10 15.75V20.25C10 20.6642 9.66421 21 9.25 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-1-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-stroke-1.5/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";
|