@central-icons-react-native/square-outlined-radius-0-stroke-1 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 h=Object.create;var C=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!B.call(r,p)&&p!==t&&C(r,p,{get:()=>o[p],enumerable:!(s=i(o,p))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?h(g(r)):{},l(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>l(C({},"__esModule",{value:!0}),r);var y={};I(y,{IconTape2:()=>x,default:()=>P});module.exports=d(y);var e=m(require("react"));var a=m(require("react")),c=require("react-native-svg"),u=({children:r,size:o=24,...t})=>a.default.createElement(c.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 n=require("react-native-svg"),x=r=>e.default.createElement(u,{...r},e.default.createElement(n.Path,{d:"M2.5 4.5H21.5V19.5H2.5V4.5Z",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M6 10C6 8.61929 7.11929 7.5 8.5 7.5H15.5007C16.8814 7.5 18.0007 8.61929 18.0007 10C18.0007 11.3807 16.8814 12.5 15.5007 12.5H8.5C7.11929 12.5 6 11.3807 6 10Z",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M8 15.5H16L17.5 19.5H6.5L8 15.5Z",stroke:"currentColor"}),e.default.createElement(n.Rect,{x:"6.00195",y:"7.75146",width:"4.49707",height:"4.49707",rx:"2.24854",stroke:"currentColor"}),e.default.createElement(n.Rect,{x:"13.502",y:"7.75098",width:"4.49756",height:"4.49756",rx:"2.24878",stroke:"currentColor"})),P=x;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, Rect } from \"react-native-svg\";\n\nexport const IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\" />\n <Path\n d=\"M6 10C6 8.61929 7.11929 7.5 8.5 7.5H15.5007C16.8814 7.5 18.0007 8.61929 18.0007 10C18.0007 11.3807 16.8814 12.5 15.5007 12.5H8.5C7.11929 12.5 6 11.3807 6 10Z\"\n stroke=\"currentColor\"\n />\n <Path d=\"M8 15.5H16L17.5 19.5H6.5L8 15.5Z\" stroke=\"currentColor\" />\n <Rect\n x=\"6.00195\"\n y=\"7.75146\"\n width=\"4.49707\"\n height=\"4.49707\"\n rx=\"2.24854\"\n stroke=\"currentColor\"\n />\n <Rect\n x=\"13.502\"\n y=\"7.75098\"\n width=\"4.49756\"\n height=\"4.49756\"\n rx=\"2.24878\"\n stroke=\"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,EAA2B,4BAEdC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,8BAA8B,OAAO,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,gKACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mCAAmC,OAAO,eAAe,EACjE,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,EAAE,UACF,MAAM,UACN,OAAO,UACP,GAAG,UACH,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,SACF,EAAE,UACF,MAAM,UACN,OAAO,UACP,GAAG,UACH,OAAO,eACT,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 s from"react";import{Svg as l}from"react-native-svg";var n=({children:t,size:r=24,...C})=>s.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e,Rect as p}from"react-native-svg";var m=t=>o.createElement(n,{...t},o.createElement(e,{d:"M2.5 4.5H21.5V19.5H2.5V4.5Z",stroke:"currentColor"}),o.createElement(e,{d:"M6 10C6 8.61929 7.11929 7.5 8.5 7.5H15.5007C16.8814 7.5 18.0007 8.61929 18.0007 10C18.0007 11.3807 16.8814 12.5 15.5007 12.5H8.5C7.11929 12.5 6 11.3807 6 10Z",stroke:"currentColor"}),o.createElement(e,{d:"M8 15.5H16L17.5 19.5H6.5L8 15.5Z",stroke:"currentColor"}),o.createElement(p,{x:"6.00195",y:"7.75146",width:"4.49707",height:"4.49707",rx:"2.24854",stroke:"currentColor"}),o.createElement(p,{x:"13.502",y:"7.75098",width:"4.49756",height:"4.49756",rx:"2.24878",stroke:"currentColor"})),I=m;export{m 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, Rect } from \"react-native-svg\";\n\nexport const IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\" />\n <Path\n d=\"M6 10C6 8.61929 7.11929 7.5 8.5 7.5H15.5007C16.8814 7.5 18.0007 8.61929 18.0007 10C18.0007 11.3807 16.8814 12.5 15.5007 12.5H8.5C7.11929 12.5 6 11.3807 6 10Z\"\n stroke=\"currentColor\"\n />\n <Path d=\"M8 15.5H16L17.5 19.5H6.5L8 15.5Z\" stroke=\"currentColor\" />\n <Rect\n x=\"6.00195\"\n y=\"7.75146\"\n width=\"4.49707\"\n height=\"4.49707\"\n rx=\"2.24854\"\n stroke=\"currentColor\"\n />\n <Rect\n x=\"13.502\"\n y=\"7.75098\"\n width=\"4.49756\"\n height=\"4.49756\"\n rx=\"2.24878\"\n stroke=\"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,EAAM,QAAAC,MAAY,mBAEpB,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAK,EAAE,8BAA8B,OAAO,eAAe,EAC5DI,EAAA,cAACJ,EAAA,CACC,EAAE,gKACF,OAAO,eACT,EACAI,EAAA,cAACJ,EAAA,CAAK,EAAE,mCAAmC,OAAO,eAAe,EACjEI,EAAA,cAACH,EAAA,CACC,EAAE,UACF,EAAE,UACF,MAAM,UACN,OAAO,UACP,GAAG,UACH,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,SACF,EAAE,UACF,MAAM,UACN,OAAO,UACP,GAAG,UACH,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Rect","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": "square-outlined-radius-0-stroke-1",
|
|
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": "square",
|
|
121
|
+
"filled": "off",
|
|
122
|
+
"radius": "0",
|
|
123
|
+
"stroke": "1"
|
|
124
|
+
},
|
|
125
|
+
"createdAt": "2025-12-11T15:01:41.687546+00:00",
|
|
126
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
127
|
+
"componentName": "IconAffinity"
|
|
128
|
+
},
|
|
115
129
|
{
|
|
116
130
|
"category": "Devices & Signals",
|
|
117
131
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"1.5\" stroke=\"currentColor\"/><path d=\"M12.5 11.5H11.5V12.5H12.5V11.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M16.7508 20.2286C19.5899 18.5859 21.5 15.516 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.516 4.41007 18.5859 7.24917 20.2286\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M9.24865 16.7634C7.60544 15.8122 6.5 14.0352 6.5 12C6.5 8.96243 8.96243 6.5 12 6.5C15.0376 6.5 17.5 8.96243 17.5 12C17.5 14.0352 16.3946 15.8122 14.7514 16.7634\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -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": "square",
|
|
@@ -20342,6 +20356,20 @@
|
|
|
20342
20356
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
20343
20357
|
"componentName": "IconTape"
|
|
20344
20358
|
},
|
|
20359
|
+
{
|
|
20360
|
+
"category": "Devices & Signals",
|
|
20361
|
+
"svg": "<path d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\"/><path d=\"M6 10C6 8.61929 7.11929 7.5 8.5 7.5H15.5007C16.8814 7.5 18.0007 8.61929 18.0007 10C18.0007 11.3807 16.8814 12.5 15.5007 12.5H8.5C7.11929 12.5 6 11.3807 6 10Z\" stroke=\"currentColor\"/><path d=\"M8 15.5H16L17.5 19.5H6.5L8 15.5Z\" stroke=\"currentColor\"/><rect x=\"6.00195\" y=\"7.75146\" width=\"4.49707\" height=\"4.49707\" rx=\"2.24854\" stroke=\"currentColor\"/><rect x=\"13.502\" y=\"7.75098\" width=\"4.49756\" height=\"4.49756\" rx=\"2.24878\" stroke=\"currentColor\"/>",
|
|
20362
|
+
"iconName": "tape-2, cassette, record, music",
|
|
20363
|
+
"variant": {
|
|
20364
|
+
"join": "square",
|
|
20365
|
+
"filled": "off",
|
|
20366
|
+
"radius": "0",
|
|
20367
|
+
"stroke": "1"
|
|
20368
|
+
},
|
|
20369
|
+
"createdAt": "2025-12-12T09:01:58.254722+00:00",
|
|
20370
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
20371
|
+
"componentName": "IconTape2"
|
|
20372
|
+
},
|
|
20345
20373
|
{
|
|
20346
20374
|
"category": "Interface General",
|
|
20347
20375
|
"svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/><path d=\"M17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z\" stroke=\"currentColor\"/><path d=\"M12.5 12C12.5 12.2761 12.2761 12.5 12 12.5C11.7239 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.7239 11.5 12 11.5C12.2761 11.5 12.5 11.7239 12.5 12Z\" stroke=\"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/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.65",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 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";
|