@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.63 → 1.1.65
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/IconAffinity/index.d.ts +4 -0
- package/IconAffinity/index.js +2 -0
- package/IconAffinity/index.js.map +1 -0
- package/IconAffinity/index.mjs +2 -0
- package/IconAffinity/index.mjs.map +1 -0
- package/IconGoogle/index.js +1 -1
- package/IconGoogle/index.js.map +1 -1
- package/IconGoogle/index.mjs +1 -1
- package/IconGoogle/index.mjs.map +1 -1
- package/IconTape2/index.d.ts +4 -0
- package/IconTape2/index.js +2 -0
- package/IconTape2/index.js.map +1 -0
- package/IconTape2/index.mjs +2 -0
- package/IconTape2/index.mjs.map +1 -0
- package/README.md +2 -0
- package/filtered-icons.json +29 -1
- package/icons/index.d.ts +2 -0
- package/icons-index.json +8 -4
- package/index.d.ts +2 -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 +15 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconAffinity:()=>i,default:()=>y});module.exports=v(h);var C=l(require("react"));var m=l(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...t})=>m.default.createElement(f.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),i=r=>C.default.createElement(s,{...r},C.default.createElement(c.Path,{d:"M19.6157 6.52429C19.6157 3.88674 16.5606 2.75 12.6605 2.75C10.2882 2.75 7.60574 3.18911 5.11455 3.97485V9.13252C8.78581 6.45864 12.8647 5.31397 15.4921 5.31397C17.1442 5.31397 18.2652 5.77501 18.2652 6.60078C18.2652 10.0036 3.5 9.46437 3.5 16.817C3.5 19.6353 5.43794 21.25 8.1644 21.25C12.2884 21.25 15.4077 17.2423 17.7413 12.357L18.2141 12.5269C16.985 15.5123 14.4416 18.7856 13.9463 20.8899H19.2556V10.0035H18.0293C16.2493 13.8712 13.6411 17.4352 10.9329 17.4352C9.69652 17.4352 8.90999 16.6851 8.90999 15.7338C8.90999 11.6628 19.6157 10.8477 19.6157 6.52429Z",fill:"currentColor"})),y=i;0&&(module.exports={IconAffinity});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAffinity/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 IconAffinity: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.6157 6.52429C19.6157 3.88674 16.5606 2.75 12.6605 2.75C10.2882 2.75 7.60574 3.18911 5.11455 3.97485V9.13252C8.78581 6.45864 12.8647 5.31397 15.4921 5.31397C17.1442 5.31397 18.2652 5.77501 18.2652 6.60078C18.2652 10.0036 3.5 9.46437 3.5 16.817C3.5 19.6353 5.43794 21.25 8.1644 21.25C12.2884 21.25 15.4077 17.2423 17.7413 12.357L18.2141 12.5269C16.985 15.5123 14.4416 18.7856 13.9463 20.8899H19.2556V10.0035H18.0293C16.2493 13.8712 13.6411 17.4352 10.9329 17.4352C9.69652 17.4352 8.90999 16.6851 8.90999 15.7338C8.90999 11.6628 19.6157 10.8477 19.6157 6.52429Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAffinity;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qjBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAffinity_exports","__export","IconAffinity","IconAffinity_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAffinity","props","React","CentralIconBase","IconAffinity_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({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=>e.createElement(t,{...o},e.createElement(a,{d:"M19.6157 6.52429C19.6157 3.88674 16.5606 2.75 12.6605 2.75C10.2882 2.75 7.60574 3.18911 5.11455 3.97485V9.13252C8.78581 6.45864 12.8647 5.31397 15.4921 5.31397C17.1442 5.31397 18.2652 5.77501 18.2652 6.60078C18.2652 10.0036 3.5 9.46437 3.5 16.817C3.5 19.6353 5.43794 21.25 8.1644 21.25C12.2884 21.25 15.4077 17.2423 17.7413 12.357L18.2141 12.5269C16.985 15.5123 14.4416 18.7856 13.9463 20.8899H19.2556V10.0035H18.0293C16.2493 13.8712 13.6411 17.4352 10.9329 17.4352C9.69652 17.4352 8.90999 16.6851 8.90999 15.7338C8.90999 11.6628 19.6157 10.8477 19.6157 6.52429Z",fill:"currentColor"})),P=l;export{l as IconAffinity,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAffinity/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 IconAffinity: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.6157 6.52429C19.6157 3.88674 16.5606 2.75 12.6605 2.75C10.2882 2.75 7.60574 3.18911 5.11455 3.97485V9.13252C8.78581 6.45864 12.8647 5.31397 15.4921 5.31397C17.1442 5.31397 18.2652 5.77501 18.2652 6.60078C18.2652 10.0036 3.5 9.46437 3.5 16.817C3.5 19.6353 5.43794 21.25 8.1644 21.25C12.2884 21.25 15.4077 17.2423 17.7413 12.357L18.2141 12.5269C16.985 15.5123 14.4416 18.7856 13.9463 20.8899H19.2556V10.0035H18.0293C16.2493 13.8712 13.6411 17.4352 10.9329 17.4352C9.69652 17.4352 8.90999 16.6851 8.90999 15.7338C8.90999 11.6628 19.6157 10.8477 19.6157 6.52429Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAffinity;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qjBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAffinity","props","React","CentralIconBase","IconAffinity_default"]}
|
package/IconGoogle/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of i(r))!x.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(p=g(r,e))||p.enumerable});return o};var l=(o,r,t)=>(t=o!=null?I(u(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var h={};P(h,{IconGoogle:()=>B,default:()=>L});module.exports=v(h);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),B=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{d:"M11.9806 2C14.6804 2.00011 16.9348 2.99128 18.671 4.60938L15.8078 7.47266C14.7624 6.49094 13.4532 5.98155 11.9806 5.98145C9.38395 5.98145 7.17649 7.73178 6.38296 10.0908V10.0996C5.96941 11.3403 5.96941 12.6597 6.38296 13.9004L6.37124 13.9092H6.38003C7.17096 16.2728 9.38064 18.0273 11.9806 18.0273C13.3258 18.0273 14.4619 17.6634 15.3527 17.0635L15.3556 17.0654V17.0635C16.419 16.3544 17.128 15.3 17.3644 14.0547H11.9826V10.1816H21.4005C21.5187 10.8362 21.5822 11.5184 21.5822 12.2275C21.5821 15.2729 20.4916 17.8366 18.6007 19.582H18.5988L18.2814 19.8604C16.6596 21.2168 14.5119 21.9999 11.9806 22C8.07162 22 4.69838 19.7547 3.05288 16.4912V16.4766C1.63857 13.6817 1.63835 10.3141 3.05385 7.51953L3.05288 7.51855C4.69833 4.24582 8.07152 2 11.9806 2Z",fill:"currentColor"})),L=B;0&&(module.exports={IconGoogle});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconGoogle/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9806 2C14.6804 2.00011 16.9348 2.99128 18.671 4.60938L15.8078 7.47266C14.7624 6.49094 13.4532 5.98155 11.9806 5.98145C9.38395 5.98145 7.17649 7.73178 6.38296 10.0908V10.0996C5.96941 11.3403 5.96941 12.6597 6.38296 13.9004L6.37124 13.9092H6.38003C7.17096 16.2728 9.38064 18.0273 11.9806 18.0273C13.3258 18.0273 14.4619 17.6634 15.3527 17.0635L15.3556 17.0654V17.0635C16.419 16.3544 17.128 15.3 17.3644 14.0547H11.9826V10.1816H21.4005C21.5187 10.8362 21.5822 11.5184 21.5822 12.2275C21.5821 15.2729 20.4916 17.8366 18.6007 19.582H18.5988L18.2814 19.8604C16.6596 21.2168 14.5119 21.9999 11.9806 22C8.07162 22 4.69838 19.7547 3.05288 16.4912V16.4766C1.63857 13.6817 1.63835 10.3141 3.05385 7.51953L3.05288 7.51855C4.69833 4.24582 8.07152 2 11.9806 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoogle;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ivBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGoogle_exports","__export","IconGoogle","IconGoogle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoogle","props","React","CentralIconBase","IconGoogle_default"]}
|
package/IconGoogle/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var l=r=>e.createElement(t,{...r},e.createElement(a,{d:"M11.9806 2C14.6804 2.00011 16.9348 2.99128 18.671 4.60938L15.8078 7.47266C14.7624 6.49094 13.4532 5.98155 11.9806 5.98145C9.38395 5.98145 7.17649 7.73178 6.38296 10.0908V10.0996C5.96941 11.3403 5.96941 12.6597 6.38296 13.9004L6.37124 13.9092H6.38003C7.17096 16.2728 9.38064 18.0273 11.9806 18.0273C13.3258 18.0273 14.4619 17.6634 15.3527 17.0635L15.3556 17.0654V17.0635C16.419 16.3544 17.128 15.3 17.3644 14.0547H11.9826V10.1816H21.4005C21.5187 10.8362 21.5822 11.5184 21.5822 12.2275C21.5821 15.2729 20.4916 17.8366 18.6007 19.582H18.5988L18.2814 19.8604C16.6596 21.2168 14.5119 21.9999 11.9806 22C8.07162 22 4.69838 19.7547 3.05288 16.4912V16.4766C1.63857 13.6817 1.63835 10.3141 3.05385 7.51953L3.05288 7.51855C4.69833 4.24582 8.07152 2 11.9806 2Z",fill:"currentColor"})),x=l;export{l as IconGoogle,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconGoogle/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9806 2C14.6804 2.00011 16.9348 2.99128 18.671 4.60938L15.8078 7.47266C14.7624 6.49094 13.4532 5.98155 11.9806 5.98145C9.38395 5.98145 7.17649 7.73178 6.38296 10.0908V10.0996C5.96941 11.3403 5.96941 12.6597 6.38296 13.9004L6.37124 13.9092H6.38003C7.17096 16.2728 9.38064 18.0273 11.9806 18.0273C13.3258 18.0273 14.4619 17.6634 15.3527 17.0635L15.3556 17.0654V17.0635C16.419 16.3544 17.128 15.3 17.3644 14.0547H11.9826V10.1816H21.4005C21.5187 10.8362 21.5822 11.5184 21.5822 12.2275C21.5821 15.2729 20.4916 17.8366 18.6007 19.582H18.5988L18.2814 19.8604C16.6596 21.2168 14.5119 21.9999 11.9806 22C8.07162 22 4.69838 19.7547 3.05288 16.4912V16.4766C1.63857 13.6817 1.63835 10.3141 3.05385 7.51953L3.05288 7.51855C4.69833 4.24582 8.07152 2 11.9806 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoogle;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ivBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoogle","props","React","CentralIconBase","IconGoogle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!I.call(r,n)&&n!==C&&l(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var a=(r,o,C)=>(C=r!=null?c(H(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),x=r=>f(l({},"__esModule",{value:!0}),r);var g={};v(g,{IconTape2:()=>u,default:()=>P});module.exports=x(g);var e=a(require("react"));var m=a(require("react")),i=require("react-native-svg"),s=({children:r,size:o=24,...C})=>m.default.createElement(i.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),u=r=>e.default.createElement(s,{...r},e.default.createElement(t.Path,{d:"M7.5 9.5C8.05228 9.5 8.5 9.94772 8.5 10.5C8.5 11.0523 8.05228 11.5 7.5 11.5C6.94772 11.5 6.5 11.0523 6.5 10.5C6.5 9.94772 6.94772 9.5 7.5 9.5Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M13.6738 9.5C13.5631 9.81306 13.5 10.149 13.5 10.5C13.5 10.851 13.5631 11.1869 13.6738 11.5H10.3262C10.4369 11.1869 10.5 10.851 10.5 10.5C10.5 10.149 10.4369 9.81306 10.3262 9.5H13.6738Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M16.5 9.5C17.0523 9.5 17.5 9.94772 17.5 10.5C17.5 11.0523 17.0523 11.5 16.5 11.5C15.9477 11.5 15.5 11.0523 15.5 10.5C15.5 9.94772 15.9477 9.5 16.5 9.5Z",fill:"currentColor"}),e.default.createElement(t.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM8 16C7.66854 16 7.36169 16.1637 7.17676 16.4316L7.10547 16.5527L6.38184 18H17.6182L16.8945 16.5527C16.7251 16.214 16.3788 16 16 16H8ZM7.5 7.5C5.84315 7.5 4.5 8.84315 4.5 10.5C4.5 12.1569 5.84315 13.5 7.5 13.5H16.5C18.1569 13.5 19.5 12.1569 19.5 10.5C19.5 8.84315 18.1569 7.5 16.5 7.5H7.5Z",fill:"currentColor"})),P=u;0&&(module.exports={IconTape2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTape2/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 IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.5 9.5C8.05228 9.5 8.5 9.94772 8.5 10.5C8.5 11.0523 8.05228 11.5 7.5 11.5C6.94772 11.5 6.5 11.0523 6.5 10.5C6.5 9.94772 6.94772 9.5 7.5 9.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6738 9.5C13.5631 9.81306 13.5 10.149 13.5 10.5C13.5 10.851 13.5631 11.1869 13.6738 11.5H10.3262C10.4369 11.1869 10.5 10.851 10.5 10.5C10.5 10.149 10.4369 9.81306 10.3262 9.5H13.6738Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 9.5C17.0523 9.5 17.5 9.94772 17.5 10.5C17.5 11.0523 17.0523 11.5 16.5 11.5C15.9477 11.5 15.5 11.0523 15.5 10.5C15.5 9.94772 15.9477 9.5 16.5 9.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM8 16C7.66854 16 7.36169 16.1637 7.17676 16.4316L7.10547 16.5527L6.38184 18H17.6182L16.8945 16.5527C16.7251 16.214 16.3788 16 16 16H8ZM7.5 7.5C5.84315 7.5 4.5 8.84315 4.5 10.5C4.5 12.1569 5.84315 13.5 7.5 13.5H16.5C18.1569 13.5 19.5 12.1569 19.5 10.5C19.5 8.84315 18.1569 7.5 16.5 7.5H7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape2;\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,eAAAE,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,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6LACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4ZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTape2_exports","__export","IconTape2","IconTape2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTape2","props","React","CentralIconBase","IconTape2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as C}from"react-native-svg";var f=e=>o.createElement(n,{...e},o.createElement(C,{d:"M7.5 9.5C8.05228 9.5 8.5 9.94772 8.5 10.5C8.5 11.0523 8.05228 11.5 7.5 11.5C6.94772 11.5 6.5 11.0523 6.5 10.5C6.5 9.94772 6.94772 9.5 7.5 9.5Z",fill:"currentColor"}),o.createElement(C,{d:"M13.6738 9.5C13.5631 9.81306 13.5 10.149 13.5 10.5C13.5 10.851 13.5631 11.1869 13.6738 11.5H10.3262C10.4369 11.1869 10.5 10.851 10.5 10.5C10.5 10.149 10.4369 9.81306 10.3262 9.5H13.6738Z",fill:"currentColor"}),o.createElement(C,{d:"M16.5 9.5C17.0523 9.5 17.5 9.94772 17.5 10.5C17.5 11.0523 17.0523 11.5 16.5 11.5C15.9477 11.5 15.5 11.0523 15.5 10.5C15.5 9.94772 15.9477 9.5 16.5 9.5Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM8 16C7.66854 16 7.36169 16.1637 7.17676 16.4316L7.10547 16.5527L6.38184 18H17.6182L16.8945 16.5527C16.7251 16.214 16.3788 16 16 16H8ZM7.5 7.5C5.84315 7.5 4.5 8.84315 4.5 10.5C4.5 12.1569 5.84315 13.5 7.5 13.5H16.5C18.1569 13.5 19.5 12.1569 19.5 10.5C19.5 8.84315 18.1569 7.5 16.5 7.5H7.5Z",fill:"currentColor"})),I=f;export{f as IconTape2,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTape2/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 IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.5 9.5C8.05228 9.5 8.5 9.94772 8.5 10.5C8.5 11.0523 8.05228 11.5 7.5 11.5C6.94772 11.5 6.5 11.0523 6.5 10.5C6.5 9.94772 6.94772 9.5 7.5 9.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6738 9.5C13.5631 9.81306 13.5 10.149 13.5 10.5C13.5 10.851 13.5631 11.1869 13.6738 11.5H10.3262C10.4369 11.1869 10.5 10.851 10.5 10.5C10.5 10.149 10.4369 9.81306 10.3262 9.5H13.6738Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 9.5C17.0523 9.5 17.5 9.94772 17.5 10.5C17.5 11.0523 17.0523 11.5 16.5 11.5C15.9477 11.5 15.5 11.0523 15.5 10.5C15.5 9.94772 15.9477 9.5 16.5 9.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM8 16C7.66854 16 7.36169 16.1637 7.17676 16.4316L7.10547 16.5527L6.38184 18H17.6182L16.8945 16.5527C16.7251 16.214 16.3788 16 16 16H8ZM7.5 7.5C5.84315 7.5 4.5 8.84315 4.5 10.5C4.5 12.1569 5.84315 13.5 7.5 13.5H16.5C18.1569 13.5 19.5 12.1569 19.5 10.5C19.5 8.84315 18.1569 7.5 16.5 7.5H7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape2;\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,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6LACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4ZACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTape2","props","React","CentralIconBase","IconTape2_default"]}
|
package/README.md
CHANGED
|
@@ -579,6 +579,7 @@ Below is a complete list of available icons:
|
|
|
579
579
|
- IconStudioDisplay
|
|
580
580
|
- IconTablet
|
|
581
581
|
- IconTape
|
|
582
|
+
- IconTape2
|
|
582
583
|
- IconTelevision
|
|
583
584
|
- IconTelevisionOld
|
|
584
585
|
- IconUsb
|
|
@@ -1384,6 +1385,7 @@ Below is a complete list of available icons:
|
|
|
1384
1385
|
|
|
1385
1386
|
### Social Media & Brands
|
|
1386
1387
|
|
|
1388
|
+
- IconAffinity
|
|
1387
1389
|
- IconAnthropic
|
|
1388
1390
|
- IconAntigravity
|
|
1389
1391
|
- IconApple
|
package/filtered-icons.json
CHANGED
|
@@ -112,6 +112,20 @@
|
|
|
112
112
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
113
113
|
"componentName": "IconAdjustPhoto"
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
"category": "Social Media & Brands",
|
|
117
|
+
"svg": "<path d=\"M19.6157 6.52429C19.6157 3.88674 16.5606 2.75 12.6605 2.75C10.2882 2.75 7.60574 3.18911 5.11455 3.97485V9.13252C8.78581 6.45864 12.8647 5.31397 15.4921 5.31397C17.1442 5.31397 18.2652 5.77501 18.2652 6.60078C18.2652 10.0036 3.5 9.46437 3.5 16.817C3.5 19.6353 5.43794 21.25 8.1644 21.25C12.2884 21.25 15.4077 17.2423 17.7413 12.357L18.2141 12.5269C16.985 15.5123 14.4416 18.7856 13.9463 20.8899H19.2556V10.0035H18.0293C16.2493 13.8712 13.6411 17.4352 10.9329 17.4352C9.69652 17.4352 8.90999 16.6851 8.90999 15.7338C8.90999 11.6628 19.6157 10.8477 19.6157 6.52429Z\" fill=\"currentColor\"/>",
|
|
118
|
+
"iconName": "affinity",
|
|
119
|
+
"variant": {
|
|
120
|
+
"join": "round",
|
|
121
|
+
"filled": "on",
|
|
122
|
+
"radius": "0",
|
|
123
|
+
"stroke": "2"
|
|
124
|
+
},
|
|
125
|
+
"createdAt": "2025-12-11T15:01:41.687546+00:00",
|
|
126
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
127
|
+
"componentName": "IconAffinity"
|
|
128
|
+
},
|
|
115
129
|
{
|
|
116
130
|
"category": "Devices & Signals",
|
|
117
131
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 4C7.58172 4 4 7.58172 4 12C4 14.7727 5.40977 17.2166 7.55626 18.6534C8.01521 18.9607 8.13822 19.5818 7.83101 20.0407C7.52379 20.4997 6.90269 20.6227 6.44374 20.3155C3.76629 18.5232 2 15.4681 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 15.4681 20.2337 18.5232 17.5563 20.3155C17.0973 20.6227 16.4762 20.4997 16.169 20.0407C15.8618 19.5818 15.9848 18.9607 16.4437 18.6534C18.5902 17.2166 20 14.7727 20 12C20 7.58172 16.4183 4 12 4ZM12 8C9.79086 8 8 9.79086 8 12C8 13.308 8.62676 14.4693 9.60058 15.2008C10.0422 15.5325 10.1313 16.1594 9.79957 16.6009C9.46788 17.0425 8.84101 17.1316 8.39942 16.7999C6.94434 15.707 6 13.9636 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12C18 13.9636 17.0557 15.707 15.6006 16.7999C15.159 17.1316 14.5321 17.0425 14.2004 16.6009C13.8687 16.1594 13.9578 15.5325 14.3994 15.2008C15.3732 14.4693 16 13.308 16 12C16 9.79086 14.2091 8 12 8ZM10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12Z\" fill=\"currentColor\"/>",
|
|
@@ -11020,7 +11034,7 @@
|
|
|
11020
11034
|
},
|
|
11021
11035
|
{
|
|
11022
11036
|
"category": "Social Media & Brands",
|
|
11023
|
-
"svg": "<path d=\"
|
|
11037
|
+
"svg": "<path d=\"M11.9806 2C14.6804 2.00011 16.9348 2.99128 18.671 4.60938L15.8078 7.47266C14.7624 6.49094 13.4532 5.98155 11.9806 5.98145C9.38395 5.98145 7.17649 7.73178 6.38296 10.0908V10.0996C5.96941 11.3403 5.96941 12.6597 6.38296 13.9004L6.37124 13.9092H6.38003C7.17096 16.2728 9.38064 18.0273 11.9806 18.0273C13.3258 18.0273 14.4619 17.6634 15.3527 17.0635L15.3556 17.0654V17.0635C16.419 16.3544 17.128 15.3 17.3644 14.0547H11.9826V10.1816H21.4005C21.5187 10.8362 21.5822 11.5184 21.5822 12.2275C21.5821 15.2729 20.4916 17.8366 18.6007 19.582H18.5988L18.2814 19.8604C16.6596 21.2168 14.5119 21.9999 11.9806 22C8.07162 22 4.69838 19.7547 3.05288 16.4912V16.4766C1.63857 13.6817 1.63835 10.3141 3.05385 7.51953L3.05288 7.51855C4.69833 4.24582 8.07152 2 11.9806 2Z\" fill=\"currentColor\"/>",
|
|
11024
11038
|
"iconName": "google",
|
|
11025
11039
|
"variant": {
|
|
11026
11040
|
"join": "round",
|
|
@@ -20342,6 +20356,20 @@
|
|
|
20342
20356
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
20343
20357
|
"componentName": "IconTape"
|
|
20344
20358
|
},
|
|
20359
|
+
{
|
|
20360
|
+
"category": "Devices & Signals",
|
|
20361
|
+
"svg": "<path d=\"M7.5 9.5C8.05228 9.5 8.5 9.94772 8.5 10.5C8.5 11.0523 8.05228 11.5 7.5 11.5C6.94772 11.5 6.5 11.0523 6.5 10.5C6.5 9.94772 6.94772 9.5 7.5 9.5Z\" fill=\"currentColor\"/><path d=\"M13.6738 9.5C13.5631 9.81306 13.5 10.149 13.5 10.5C13.5 10.851 13.5631 11.1869 13.6738 11.5H10.3262C10.4369 11.1869 10.5 10.851 10.5 10.5C10.5 10.149 10.4369 9.81306 10.3262 9.5H13.6738Z\" fill=\"currentColor\"/><path d=\"M16.5 9.5C17.0523 9.5 17.5 9.94772 17.5 10.5C17.5 11.0523 17.0523 11.5 16.5 11.5C15.9477 11.5 15.5 11.0523 15.5 10.5C15.5 9.94772 15.9477 9.5 16.5 9.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM8 16C7.66854 16 7.36169 16.1637 7.17676 16.4316L7.10547 16.5527L6.38184 18H17.6182L16.8945 16.5527C16.7251 16.214 16.3788 16 16 16H8ZM7.5 7.5C5.84315 7.5 4.5 8.84315 4.5 10.5C4.5 12.1569 5.84315 13.5 7.5 13.5H16.5C18.1569 13.5 19.5 12.1569 19.5 10.5C19.5 8.84315 18.1569 7.5 16.5 7.5H7.5Z\" fill=\"currentColor\"/>",
|
|
20362
|
+
"iconName": "tape-2, cassette, record, music",
|
|
20363
|
+
"variant": {
|
|
20364
|
+
"join": "round",
|
|
20365
|
+
"filled": "on",
|
|
20366
|
+
"radius": "0",
|
|
20367
|
+
"stroke": "2"
|
|
20368
|
+
},
|
|
20369
|
+
"createdAt": "2025-12-12T09:01:58.254722+00:00",
|
|
20370
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
20371
|
+
"componentName": "IconTape2"
|
|
20372
|
+
},
|
|
20345
20373
|
{
|
|
20346
20374
|
"category": "Interface General",
|
|
20347
20375
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 7C9.23858 7 7 9.23858 7 12C7 14.7614 9.23858 17 12 17C14.7614 17 17 14.7614 17 12C17 9.23858 14.7614 7 12 7ZM12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export type CentralIconName =
|
|
|
7
7
|
| "IconAddToBasket"
|
|
8
8
|
| "IconAddToBasket2"
|
|
9
9
|
| "IconAdjustPhoto"
|
|
10
|
+
| "IconAffinity"
|
|
10
11
|
| "IconAirdrop"
|
|
11
12
|
| "IconAirdrop2"
|
|
12
13
|
| "IconAirplane"
|
|
@@ -1452,6 +1453,7 @@ export type CentralIconName =
|
|
|
1452
1453
|
| "IconTag"
|
|
1453
1454
|
| "IconTapas"
|
|
1454
1455
|
| "IconTape"
|
|
1456
|
+
| "IconTape2"
|
|
1455
1457
|
| "IconTarget"
|
|
1456
1458
|
| "IconTarget1"
|
|
1457
1459
|
| "IconTarget2"
|
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.65",
|
|
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": 1636,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
]
|
|
409
409
|
},
|
|
410
410
|
"Devices & Signals": {
|
|
411
|
-
"count":
|
|
411
|
+
"count": 67,
|
|
412
412
|
"icons": [
|
|
413
413
|
"IconAirdrop",
|
|
414
414
|
"IconAirplay",
|
|
@@ -467,6 +467,7 @@
|
|
|
467
467
|
"IconStudioDisplay",
|
|
468
468
|
"IconTablet",
|
|
469
469
|
"IconTape",
|
|
470
|
+
"IconTape2",
|
|
470
471
|
"IconTelevision",
|
|
471
472
|
"IconTelevisionOld",
|
|
472
473
|
"IconUsb",
|
|
@@ -1304,8 +1305,9 @@
|
|
|
1304
1305
|
]
|
|
1305
1306
|
},
|
|
1306
1307
|
"Social Media & Brands": {
|
|
1307
|
-
"count":
|
|
1308
|
+
"count": 117,
|
|
1308
1309
|
"icons": [
|
|
1310
|
+
"IconAffinity",
|
|
1309
1311
|
"IconAnthropic",
|
|
1310
1312
|
"IconAntigravity",
|
|
1311
1313
|
"IconApple",
|
|
@@ -1832,6 +1834,7 @@
|
|
|
1832
1834
|
"IconAddToBasket": "add-to-basket",
|
|
1833
1835
|
"IconAddToBasket2": "add-to-basket-2",
|
|
1834
1836
|
"IconAdjustPhoto": "adjust-photo, tuning, settings",
|
|
1837
|
+
"IconAffinity": "affinity",
|
|
1835
1838
|
"IconAirdrop": "airdrop, file-sharing, radar",
|
|
1836
1839
|
"IconAirdrop2": "airdrop-2, free, drop, parachute",
|
|
1837
1840
|
"IconAirplane": "airplane, flight",
|
|
@@ -3277,6 +3280,7 @@
|
|
|
3277
3280
|
"IconTag": "tag, sale",
|
|
3278
3281
|
"IconTapas": "tapas, canabes",
|
|
3279
3282
|
"IconTape": "tape",
|
|
3283
|
+
"IconTape2": "tape-2, cassette, record, music",
|
|
3280
3284
|
"IconTarget": "target, focus, do-not-disdurb",
|
|
3281
3285
|
"IconTarget1": "target-1, zoom, crosshair",
|
|
3282
3286
|
"IconTarget2": "target-2, zoom, crosshair",
|
package/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { IconAddKeyframe, default as IconAddKeyframeDefault, } from "./IconAddKe
|
|
|
6
6
|
export { IconAddToBasket, default as IconAddToBasketDefault, } from "./IconAddToBasket";
|
|
7
7
|
export { IconAddToBasket2, default as IconAddToBasket2Default, } from "./IconAddToBasket2";
|
|
8
8
|
export { IconAdjustPhoto, default as IconAdjustPhotoDefault, } from "./IconAdjustPhoto";
|
|
9
|
+
export { IconAffinity, default as IconAffinityDefault } from "./IconAffinity";
|
|
9
10
|
export { IconAirdrop, default as IconAirdropDefault } from "./IconAirdrop";
|
|
10
11
|
export { IconAirdrop2, default as IconAirdrop2Default } from "./IconAirdrop2";
|
|
11
12
|
export { IconAirplane, default as IconAirplaneDefault } from "./IconAirplane";
|
|
@@ -1451,6 +1452,7 @@ export { IconTactics2, default as IconTactics2Default } from "./IconTactics2";
|
|
|
1451
1452
|
export { IconTag, default as IconTagDefault } from "./IconTag";
|
|
1452
1453
|
export { IconTapas, default as IconTapasDefault } from "./IconTapas";
|
|
1453
1454
|
export { IconTape, default as IconTapeDefault } from "./IconTape";
|
|
1455
|
+
export { IconTape2, default as IconTape2Default } from "./IconTape2";
|
|
1454
1456
|
export { IconTarget, default as IconTargetDefault } from "./IconTarget";
|
|
1455
1457
|
export { IconTarget1, default as IconTarget1Default } from "./IconTarget1";
|
|
1456
1458
|
export { IconTarget2, default as IconTarget2Default } from "./IconTarget2";
|