@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.114 → 1.1.116
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/IconBuildingBlocks/index.d.ts +4 -0
- package/IconBuildingBlocks/index.js +2 -0
- package/IconBuildingBlocks/index.js.map +1 -0
- package/IconBuildingBlocks/index.mjs +2 -0
- package/IconBuildingBlocks/index.mjs.map +1 -0
- package/IconHammer2/index.d.ts +4 -0
- package/IconHammer2/index.js +2 -0
- package/IconHammer2/index.js.map +1 -0
- package/IconHammer2/index.mjs +2 -0
- package/IconHammer2/index.mjs.map +1 -0
- package/IconShield2/index.d.ts +4 -0
- package/IconShield2/index.js +2 -0
- package/IconShield2/index.js.map +1 -0
- package/IconShield2/index.mjs +2 -0
- package/IconShield2/index.mjs.map +1 -0
- package/IconShieldCode/index.d.ts +4 -0
- package/IconShieldCode/index.js +2 -0
- package/IconShieldCode/index.js.map +1 -0
- package/IconShieldCode/index.mjs +2 -0
- package/IconShieldCode/index.mjs.map +1 -0
- package/IconTrashRounded/index.d.ts +4 -0
- package/IconTrashRounded/index.js +2 -0
- package/IconTrashRounded/index.js.map +1 -0
- package/IconTrashRounded/index.mjs +2 -0
- package/IconTrashRounded/index.mjs.map +1 -0
- package/README.md +5 -0
- package/filtered-icons.json +70 -0
- package/icons/index.d.ts +5 -0
- package/icons-index.json +16 -6
- package/index.d.ts +5 -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 +35 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var p=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var h=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0})},d=(o,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of m(r))!f.call(o,t)&&t!==e&&p(o,t,{get:()=>r[t],enumerable:!(i=C(r,t))||i.enumerable});return o};var u=(o,r,e)=>(e=o!=null?c(B(o)):{},d(r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e,o)),I=o=>d(p({},"__esModule",{value:!0}),o);var x={};h(x,{IconBuildingBlocks:()=>L,default:()=>g});module.exports=I(x);var n=u(require("react"));var k=u(require("react")),a=require("react-native-svg"),l=({children:o,size:r=24,...e})=>k.default.createElement(a.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),L=o=>n.default.createElement(l,{...o},n.default.createElement(s.Path,{d:"M20.9999 6.5L13 2L3 8.5V17.5L11 22L20.9999 15.5V6.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M20.9999 6.5L11 13L3 8.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M20.9999 11L11 17.5L3 13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M11 22V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=L;0&&(module.exports={IconBuildingBlocks});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBuildingBlocks/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 IconBuildingBlocks: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.9999 6.5L13 2L3 8.5V17.5L11 22L20.9999 15.5V6.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.9999 6.5L11 13L3 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.9999 11L11 17.5L3 13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 22V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBuildingBlocks;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBuildingBlocks_exports","__export","IconBuildingBlocks","IconBuildingBlocks_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBuildingBlocks","props","React","CentralIconBase","IconBuildingBlocks_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M20.9999 6.5L13 2L3 8.5V17.5L11 22L20.9999 15.5V6.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.9999 6.5L11 13L3 8.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.9999 11L11 17.5L3 13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M11 22V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=d;export{d as IconBuildingBlocks,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBuildingBlocks/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 IconBuildingBlocks: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.9999 6.5L13 2L3 8.5V17.5L11 22L20.9999 15.5V6.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.9999 6.5L11 13L3 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.9999 11L11 17.5L3 13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 22V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBuildingBlocks;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBuildingBlocks","props","React","CentralIconBase","IconBuildingBlocks_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!I.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=L(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?f(B(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconHammer2:()=>u,default:()=>g});module.exports=P(h);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...t})=>l.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 C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M11.0001 9.9681L14 13L14.5702 12.886C15.5686 12.6863 16.5001 13.4499 16.5001 14.4681L17.5001 15.4681L21.5001 11.4681L20.5001 10.4681H19.5001C19.2884 10.2565 19.0551 10.0546 18.8793 9.81153C18.2779 8.97977 18.7277 7.9758 18.2482 7.11299C18.1854 6.99996 18.1315 6.92702 18.0237 6.78114C15.5256 3.40069 12.153 2.35892 8 3.25018V4.00007C10.6467 5.48186 11.5422 6.94379 11.0001 9.9681Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M11 10L4.49986 16.5073C3.67173 17.3363 3.67308 18.6799 4.50288 19.5073C5.33042 20.3324 6.66958 20.3324 7.49712 19.5073L14 13.0234",stroke:"currentColor",strokeWidth:"2"})),g=u;0&&(module.exports={IconHammer2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHammer2/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 IconHammer2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.0001 9.9681L14 13L14.5702 12.886C15.5686 12.6863 16.5001 13.4499 16.5001 14.4681L17.5001 15.4681L21.5001 11.4681L20.5001 10.4681H19.5001C19.2884 10.2565 19.0551 10.0546 18.8793 9.81153C18.2779 8.97977 18.7277 7.9758 18.2482 7.11299C18.1854 6.99996 18.1315 6.92702 18.0237 6.78114C15.5256 3.40069 12.153 2.35892 8 3.25018V4.00007C10.6467 5.48186 11.5422 6.94379 11.0001 9.9681Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 10L4.49986 16.5073C3.67173 17.3363 3.67308 18.6799 4.50288 19.5073C5.33042 20.3324 6.66958 20.3324 7.49712 19.5073L14 13.0234\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHammer2;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+XACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oIACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconHammer2_exports","__export","IconHammer2","IconHammer2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHammer2","props","React","CentralIconBase","IconHammer2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(s,{...p,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=>t.createElement(e,{...o},t.createElement(n,{d:"M11.0001 9.9681L14 13L14.5702 12.886C15.5686 12.6863 16.5001 13.4499 16.5001 14.4681L17.5001 15.4681L21.5001 11.4681L20.5001 10.4681H19.5001C19.2884 10.2565 19.0551 10.0546 18.8793 9.81153C18.2779 8.97977 18.7277 7.9758 18.2482 7.11299C18.1854 6.99996 18.1315 6.92702 18.0237 6.78114C15.5256 3.40069 12.153 2.35892 8 3.25018V4.00007C10.6467 5.48186 11.5422 6.94379 11.0001 9.9681Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M11 10L4.49986 16.5073C3.67173 17.3363 3.67308 18.6799 4.50288 19.5073C5.33042 20.3324 6.66958 20.3324 7.49712 19.5073L14 13.0234",stroke:"currentColor",strokeWidth:"2"})),I=a;export{a as IconHammer2,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHammer2/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 IconHammer2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.0001 9.9681L14 13L14.5702 12.886C15.5686 12.6863 16.5001 13.4499 16.5001 14.4681L17.5001 15.4681L21.5001 11.4681L20.5001 10.4681H19.5001C19.2884 10.2565 19.0551 10.0546 18.8793 9.81153C18.2779 8.97977 18.7277 7.9758 18.2482 7.11299C18.1854 6.99996 18.1315 6.92702 18.0237 6.78114C15.5256 3.40069 12.153 2.35892 8 3.25018V4.00007C10.6467 5.48186 11.5422 6.94379 11.0001 9.9681Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 10L4.49986 16.5073C3.67173 17.3363 3.67308 18.6799 4.50288 19.5073C5.33042 20.3324 6.66958 20.3324 7.49712 19.5073L14 13.0234\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHammer2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+XACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oIACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHammer2","props","React","CentralIconBase","IconHammer2_default"]}
|
|
@@ -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,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(d(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconShield2:()=>f,default:()=>h});module.exports=g(v);var p=C(require("react"));var m=C(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(l.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 i=require("react-native-svg"),f=r=>p.default.createElement(c,{...r},p.default.createElement(i.Path,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=f;0&&(module.exports={IconShield2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShield2/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 IconShield2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShield2;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconShield2_exports","__export","IconShield2","IconShield2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconShield2","props","React","CentralIconBase","IconShield2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 s}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(s,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=C;export{C as IconShield2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShield2/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 IconShield2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShield2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconShield2","props","React","CentralIconBase","IconShield2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of L(r))!h.call(o,t)&&t!==e&&p(o,t,{get:()=>r[t],enumerable:!(i=k(r,t))||i.enumerable});return o};var a=(o,r,e)=>(e=o!=null?m(f(o)):{},C(r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e,o)),I=o=>C(p({},"__esModule",{value:!0}),o);var P={};B(P,{IconShieldCode:()=>c,default:()=>x});module.exports=I(P);var n=a(require("react"));var d=a(require("react")),u=require("react-native-svg"),l=({children:o,size:r=24,...e})=>d.default.createElement(u.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),c=o=>n.default.createElement(l,{...o},n.default.createElement(s.Path,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M10 10L8 12L10 14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M14 10L16 12L14 14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconShieldCode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShieldCode/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 IconShieldCode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 10L8 12L10 14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 10L16 12L14 14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShieldCode;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconShieldCode_exports","__export","IconShieldCode","IconShieldCode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconShieldCode","props","React","CentralIconBase","IconShieldCode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as i}from"react-native-svg";var n=({children:e,size:o=24,...p})=>s.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var C=e=>r.createElement(n,{...e},r.createElement(t,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M10 10L8 12L10 14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M14 10L16 12L14 14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconShieldCode,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShieldCode/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 IconShieldCode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 10L8 12L10 14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 10L16 12L14 14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShieldCode;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconShieldCode","props","React","CentralIconBase","IconShieldCode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!h.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=i(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?d(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var v={};x(v,{IconTrashRounded:()=>u,default:()=>g});module.exports=P(v);var C=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.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 p=require("react-native-svg"),u=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M20 5.75C20 7.13071 16.4183 8.25 12 8.25C7.58172 8.25 4 7.13071 4 5.75C4 4.36929 7.58172 3.25 12 3.25C16.4183 3.25 20 4.36929 20 5.75Z",stroke:"currentColor",strokeWidth:"2"}),C.default.createElement(p.Path,{d:"M4 5.75L5.20702 14.8026C5.40902 16.3177 5.51003 17.0752 5.77047 17.6928C6.3669 19.1072 7.57993 20.1692 9.0607 20.5735C9.70731 20.75 10.4715 20.75 12 20.75C13.5285 20.75 14.2927 20.75 14.9393 20.5735C16.4201 20.1692 17.6331 19.1072 18.2295 17.6928C18.49 17.0752 18.591 16.3177 18.793 14.8026L20 5.75",stroke:"currentColor",strokeWidth:"2"})),g=u;0&&(module.exports={IconTrashRounded});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTrashRounded/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 IconTrashRounded: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 5.75C20 7.13071 16.4183 8.25 12 8.25C7.58172 8.25 4 7.13071 4 5.75C4 4.36929 7.58172 3.25 12 3.25C16.4183 3.25 20 4.36929 20 5.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M4 5.75L5.20702 14.8026C5.40902 16.3177 5.51003 17.0752 5.77047 17.6928C6.3669 19.1072 7.57993 20.1692 9.0607 20.5735C9.70731 20.75 10.4715 20.75 12 20.75C13.5285 20.75 14.2927 20.75 14.9393 20.5735C16.4201 20.1692 17.6331 19.1072 18.2295 17.6928C18.49 17.0752 18.591 16.3177 18.793 14.8026L20 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTrashRounded;\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,EAAE,yIACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconTrashRounded_exports","__export","IconTrashRounded","IconTrashRounded_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTrashRounded","props","React","CentralIconBase","IconTrashRounded_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(s,{...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=>t.createElement(e,{...o},t.createElement(n,{d:"M20 5.75C20 7.13071 16.4183 8.25 12 8.25C7.58172 8.25 4 7.13071 4 5.75C4 4.36929 7.58172 3.25 12 3.25C16.4183 3.25 20 4.36929 20 5.75Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M4 5.75L5.20702 14.8026C5.40902 16.3177 5.51003 17.0752 5.77047 17.6928C6.3669 19.1072 7.57993 20.1692 9.0607 20.5735C9.70731 20.75 10.4715 20.75 12 20.75C13.5285 20.75 14.2927 20.75 14.9393 20.5735C16.4201 20.1692 17.6331 19.1072 18.2295 17.6928C18.49 17.0752 18.591 16.3177 18.793 14.8026L20 5.75",stroke:"currentColor",strokeWidth:"2"})),h=a;export{a as IconTrashRounded,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTrashRounded/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 IconTrashRounded: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 5.75C20 7.13071 16.4183 8.25 12 8.25C7.58172 8.25 4 7.13071 4 5.75C4 4.36929 7.58172 3.25 12 3.25C16.4183 3.25 20 4.36929 20 5.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M4 5.75L5.20702 14.8026C5.40902 16.3177 5.51003 17.0752 5.77047 17.6928C6.3669 19.1072 7.57993 20.1692 9.0607 20.5735C9.70731 20.75 10.4715 20.75 12 20.75C13.5285 20.75 14.2927 20.75 14.9393 20.5735C16.4201 20.1692 17.6331 19.1072 18.2295 17.6928C18.49 17.0752 18.591 16.3177 18.793 14.8026L20 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTrashRounded;\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,EAAE,yIACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTrashRounded","props","React","CentralIconBase","IconTrashRounded_default"]}
|
package/README.md
CHANGED
|
@@ -455,6 +455,7 @@ Below is a complete list of available icons:
|
|
|
455
455
|
- IconDraft
|
|
456
456
|
- IconForkCode
|
|
457
457
|
- IconHammer
|
|
458
|
+
- IconHammer2
|
|
458
459
|
- IconHook
|
|
459
460
|
- IconLadybug
|
|
460
461
|
- IconPullRequest
|
|
@@ -1140,6 +1141,7 @@ Below is a complete list of available icons:
|
|
|
1140
1141
|
- IconTrashCanSimple
|
|
1141
1142
|
- IconTrashPaper
|
|
1142
1143
|
- IconTrashPermanently
|
|
1144
|
+
- IconTrashRounded
|
|
1143
1145
|
- IconUnarchiv
|
|
1144
1146
|
- IconUnpin
|
|
1145
1147
|
- IconUntrash
|
|
@@ -1408,10 +1410,12 @@ Below is a complete list of available icons:
|
|
|
1408
1410
|
- IconPasswordStars
|
|
1409
1411
|
- IconSafeSimple
|
|
1410
1412
|
- IconShield
|
|
1413
|
+
- IconShield2
|
|
1411
1414
|
- IconShieldBreak
|
|
1412
1415
|
- IconShieldCheck
|
|
1413
1416
|
- IconShieldCheck2
|
|
1414
1417
|
- IconShieldCheck3
|
|
1418
|
+
- IconShieldCode
|
|
1415
1419
|
- IconShieldCrossed
|
|
1416
1420
|
- IconShieldKeyhole
|
|
1417
1421
|
- IconSiren
|
|
@@ -1738,6 +1742,7 @@ Below is a complete list of available icons:
|
|
|
1738
1742
|
- IconBooks
|
|
1739
1743
|
- IconBronceMedal
|
|
1740
1744
|
- IconBroom
|
|
1745
|
+
- IconBuildingBlocks
|
|
1741
1746
|
- IconCap
|
|
1742
1747
|
- IconCelebrate
|
|
1743
1748
|
- IconCirclesThree
|
package/filtered-icons.json
CHANGED
|
@@ -4466,6 +4466,20 @@
|
|
|
4466
4466
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
4467
4467
|
"componentName": "IconBugFace"
|
|
4468
4468
|
},
|
|
4469
|
+
{
|
|
4470
|
+
"category": "Things",
|
|
4471
|
+
"svg": "<path d=\"M20.9999 6.5L13 2L3 8.5V17.5L11 22L20.9999 15.5V6.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.9999 6.5L11 13L3 8.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.9999 11L11 17.5L3 13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 22V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
4472
|
+
"iconName": "building-blocks, skills, stack",
|
|
4473
|
+
"variant": {
|
|
4474
|
+
"join": "round",
|
|
4475
|
+
"filled": "off",
|
|
4476
|
+
"radius": "0",
|
|
4477
|
+
"stroke": "2"
|
|
4478
|
+
},
|
|
4479
|
+
"createdAt": "2026-02-03T09:00:37.643272+00:00",
|
|
4480
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
4481
|
+
"componentName": "IconBuildingBlocks"
|
|
4482
|
+
},
|
|
4469
4483
|
{
|
|
4470
4484
|
"category": "Building",
|
|
4471
4485
|
"svg": "<path d=\"M10 9H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 13H10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22 19H2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20 19V8H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 19V4H4V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12208,6 +12222,20 @@
|
|
|
12208
12222
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
12209
12223
|
"componentName": "IconHammer"
|
|
12210
12224
|
},
|
|
12225
|
+
{
|
|
12226
|
+
"category": "Code",
|
|
12227
|
+
"svg": "<path d=\"M11.0001 9.9681L14 13L14.5702 12.886C15.5686 12.6863 16.5001 13.4499 16.5001 14.4681L17.5001 15.4681L21.5001 11.4681L20.5001 10.4681H19.5001C19.2884 10.2565 19.0551 10.0546 18.8793 9.81153C18.2779 8.97977 18.7277 7.9758 18.2482 7.11299C18.1854 6.99996 18.1315 6.92702 18.0237 6.78114C15.5256 3.40069 12.153 2.35892 8 3.25018V4.00007C10.6467 5.48186 11.5422 6.94379 11.0001 9.9681Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 10L4.49986 16.5073C3.67173 17.3363 3.67308 18.6799 4.50288 19.5073C5.33042 20.3324 6.66958 20.3324 7.49712 19.5073L14 13.0234\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
12228
|
+
"iconName": "hammer-2, crafting, building",
|
|
12229
|
+
"variant": {
|
|
12230
|
+
"join": "round",
|
|
12231
|
+
"filled": "off",
|
|
12232
|
+
"radius": "0",
|
|
12233
|
+
"stroke": "2"
|
|
12234
|
+
},
|
|
12235
|
+
"createdAt": "2026-02-02T13:00:24.339591+00:00",
|
|
12236
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
12237
|
+
"componentName": "IconHammer2"
|
|
12238
|
+
},
|
|
12211
12239
|
{
|
|
12212
12240
|
"category": "Hands",
|
|
12213
12241
|
"svg": "<path d=\"M16 8V7C16 5.89543 16.8954 5 18 5C19.1046 5 20 5.89543 20 7V13.8292M20 13.8292V11M20 13.8292C20 17.7895 16.7895 21 12.8292 21C10.1669 21 7.72366 19.525 6.48368 17.169L3.5 11.5L4.25061 10.5617C4.94063 9.69921 6.19921 9.55937 7.06174 10.2494L8 11V6C8 4.89543 8.89543 4 10 4C11.1046 4 12 4.89543 12 6V10M12 8V5C12 3.89543 12.8954 3 14 3C15.1046 3 16 3.89543 16 5V11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -19390,6 +19418,20 @@
|
|
|
19390
19418
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
19391
19419
|
"componentName": "IconShield"
|
|
19392
19420
|
},
|
|
19421
|
+
{
|
|
19422
|
+
"category": "Security",
|
|
19423
|
+
"svg": "<path d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
19424
|
+
"iconName": "shield-2, safety, privacy",
|
|
19425
|
+
"variant": {
|
|
19426
|
+
"join": "round",
|
|
19427
|
+
"filled": "off",
|
|
19428
|
+
"radius": "0",
|
|
19429
|
+
"stroke": "2"
|
|
19430
|
+
},
|
|
19431
|
+
"createdAt": "2026-02-03T09:00:37.643272+00:00",
|
|
19432
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
19433
|
+
"componentName": "IconShield2"
|
|
19434
|
+
},
|
|
19393
19435
|
{
|
|
19394
19436
|
"category": "Security",
|
|
19395
19437
|
"svg": "<path d=\"M4 6V13C4 17.4183 7.58172 21 12 21C14.815 21 17.2905 19.546 18.7163 17.3481M8 4.25L12 2.5L20 6V13C20 13.1679 19.9948 13.3346 19.9846 13.5M2 4L22 20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -19446,6 +19488,20 @@
|
|
|
19446
19488
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
19447
19489
|
"componentName": "IconShieldCheck3"
|
|
19448
19490
|
},
|
|
19491
|
+
{
|
|
19492
|
+
"category": "Security",
|
|
19493
|
+
"svg": "<path d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 10L8 12L10 14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 10L16 12L14 14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
19494
|
+
"iconName": "shield-code, sandbox",
|
|
19495
|
+
"variant": {
|
|
19496
|
+
"join": "round",
|
|
19497
|
+
"filled": "off",
|
|
19498
|
+
"radius": "0",
|
|
19499
|
+
"stroke": "2"
|
|
19500
|
+
},
|
|
19501
|
+
"createdAt": "2026-02-03T09:00:37.643272+00:00",
|
|
19502
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
19503
|
+
"componentName": "IconShieldCode"
|
|
19504
|
+
},
|
|
19449
19505
|
{
|
|
19450
19506
|
"category": "Security",
|
|
19451
19507
|
"svg": "<path d=\"M14 13.5L12 11.5M12 11.5L10 9.5M12 11.5L14 9.5M12 11.5L10 13.5M12 3L20 5.75V11.9123C20 16.8848 16 19 12 21.1579C8 19 4 16.8848 4 11.9123V5.75L12 3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -22694,6 +22750,20 @@
|
|
|
22694
22750
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
22695
22751
|
"componentName": "IconTrashPermanently"
|
|
22696
22752
|
},
|
|
22753
|
+
{
|
|
22754
|
+
"category": "Interface General",
|
|
22755
|
+
"svg": "<path d=\"M20 5.75C20 7.13071 16.4183 8.25 12 8.25C7.58172 8.25 4 7.13071 4 5.75C4 4.36929 7.58172 3.25 12 3.25C16.4183 3.25 20 4.36929 20 5.75Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4 5.75L5.20702 14.8026C5.40902 16.3177 5.51003 17.0752 5.77047 17.6928C6.3669 19.1072 7.57993 20.1692 9.0607 20.5735C9.70731 20.75 10.4715 20.75 12 20.75C13.5285 20.75 14.2927 20.75 14.9393 20.5735C16.4201 20.1692 17.6331 19.1072 18.2295 17.6928C18.49 17.0752 18.591 16.3177 18.793 14.8026L20 5.75\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
22756
|
+
"iconName": "trash-rounded, delete, remove",
|
|
22757
|
+
"variant": {
|
|
22758
|
+
"join": "round",
|
|
22759
|
+
"filled": "off",
|
|
22760
|
+
"radius": "0",
|
|
22761
|
+
"stroke": "2"
|
|
22762
|
+
},
|
|
22763
|
+
"createdAt": "2026-02-02T13:00:24.339591+00:00",
|
|
22764
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
22765
|
+
"componentName": "IconTrashRounded"
|
|
22766
|
+
},
|
|
22697
22767
|
{
|
|
22698
22768
|
"category": "Things",
|
|
22699
22769
|
"svg": "<path d=\"M18 5H6C4.34315 5 3 6.34315 3 8V19H21V8C21 6.34315 19.6569 5 18 5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 11H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 5V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 5V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 10V12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -318,6 +318,7 @@ export type CentralIconName =
|
|
|
318
318
|
| "IconBucket"
|
|
319
319
|
| "IconBug"
|
|
320
320
|
| "IconBugFace"
|
|
321
|
+
| "IconBuildingBlocks"
|
|
321
322
|
| "IconBuildings"
|
|
322
323
|
| "IconBulletList"
|
|
323
324
|
| "IconBun"
|
|
@@ -871,6 +872,7 @@ export type CentralIconName =
|
|
|
871
872
|
| "IconH2"
|
|
872
873
|
| "IconH3"
|
|
873
874
|
| "IconHammer"
|
|
875
|
+
| "IconHammer2"
|
|
874
876
|
| "IconHand4Finger"
|
|
875
877
|
| "IconHand5Finger"
|
|
876
878
|
| "IconHandBell"
|
|
@@ -1384,10 +1386,12 @@ export type CentralIconName =
|
|
|
1384
1386
|
| "IconShareOs"
|
|
1385
1387
|
| "IconShareScreen"
|
|
1386
1388
|
| "IconShield"
|
|
1389
|
+
| "IconShield2"
|
|
1387
1390
|
| "IconShieldBreak"
|
|
1388
1391
|
| "IconShieldCheck"
|
|
1389
1392
|
| "IconShieldCheck2"
|
|
1390
1393
|
| "IconShieldCheck3"
|
|
1394
|
+
| "IconShieldCode"
|
|
1391
1395
|
| "IconShieldCrossed"
|
|
1392
1396
|
| "IconShieldKeyhole"
|
|
1393
1397
|
| "IconShift"
|
|
@@ -1620,6 +1624,7 @@ export type CentralIconName =
|
|
|
1620
1624
|
| "IconTrashCanSimple"
|
|
1621
1625
|
| "IconTrashPaper"
|
|
1622
1626
|
| "IconTrashPermanently"
|
|
1627
|
+
| "IconTrashRounded"
|
|
1623
1628
|
| "IconTreasure"
|
|
1624
1629
|
| "IconTree"
|
|
1625
1630
|
| "IconTrending1"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.116",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-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": 1750,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 67,
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
]
|
|
297
297
|
},
|
|
298
298
|
"Code": {
|
|
299
|
-
"count":
|
|
299
|
+
"count": 53,
|
|
300
300
|
"icons": [
|
|
301
301
|
"IconAgent",
|
|
302
302
|
"IconAnchor",
|
|
@@ -337,6 +337,7 @@
|
|
|
337
337
|
"IconDraft",
|
|
338
338
|
"IconForkCode",
|
|
339
339
|
"IconHammer",
|
|
340
|
+
"IconHammer2",
|
|
340
341
|
"IconHook",
|
|
341
342
|
"IconLadybug",
|
|
342
343
|
"IconPullRequest",
|
|
@@ -876,7 +877,7 @@
|
|
|
876
877
|
]
|
|
877
878
|
},
|
|
878
879
|
"Interface General": {
|
|
879
|
-
"count":
|
|
880
|
+
"count": 180,
|
|
880
881
|
"icons": [
|
|
881
882
|
"IconAnchor1",
|
|
882
883
|
"IconAnchor2",
|
|
@@ -1048,6 +1049,7 @@
|
|
|
1048
1049
|
"IconTrashCanSimple",
|
|
1049
1050
|
"IconTrashPaper",
|
|
1050
1051
|
"IconTrashPermanently",
|
|
1052
|
+
"IconTrashRounded",
|
|
1051
1053
|
"IconUnarchiv",
|
|
1052
1054
|
"IconUnpin",
|
|
1053
1055
|
"IconUntrash",
|
|
@@ -1310,7 +1312,7 @@
|
|
|
1310
1312
|
]
|
|
1311
1313
|
},
|
|
1312
1314
|
"Security": {
|
|
1313
|
-
"count":
|
|
1315
|
+
"count": 30,
|
|
1314
1316
|
"icons": [
|
|
1315
1317
|
"IconAnonymous",
|
|
1316
1318
|
"IconAsterisk",
|
|
@@ -1330,10 +1332,12 @@
|
|
|
1330
1332
|
"IconPasswordStars",
|
|
1331
1333
|
"IconSafeSimple",
|
|
1332
1334
|
"IconShield",
|
|
1335
|
+
"IconShield2",
|
|
1333
1336
|
"IconShieldBreak",
|
|
1334
1337
|
"IconShieldCheck",
|
|
1335
1338
|
"IconShieldCheck2",
|
|
1336
1339
|
"IconShieldCheck3",
|
|
1340
|
+
"IconShieldCode",
|
|
1337
1341
|
"IconShieldCrossed",
|
|
1338
1342
|
"IconShieldKeyhole",
|
|
1339
1343
|
"IconSiren",
|
|
@@ -1655,7 +1659,7 @@
|
|
|
1655
1659
|
]
|
|
1656
1660
|
},
|
|
1657
1661
|
"Things": {
|
|
1658
|
-
"count":
|
|
1662
|
+
"count": 120,
|
|
1659
1663
|
"icons": [
|
|
1660
1664
|
"IconAnvil",
|
|
1661
1665
|
"IconBackpack",
|
|
@@ -1672,6 +1676,7 @@
|
|
|
1672
1676
|
"IconBooks",
|
|
1673
1677
|
"IconBronceMedal",
|
|
1674
1678
|
"IconBroom",
|
|
1679
|
+
"IconBuildingBlocks",
|
|
1675
1680
|
"IconCap",
|
|
1676
1681
|
"IconCelebrate",
|
|
1677
1682
|
"IconCirclesThree",
|
|
@@ -2264,6 +2269,7 @@
|
|
|
2264
2269
|
"IconBucket": "bucket, trash, can",
|
|
2265
2270
|
"IconBug": "bug, issue",
|
|
2266
2271
|
"IconBugFace": "bug-face, issue",
|
|
2272
|
+
"IconBuildingBlocks": "building-blocks, skills, stack",
|
|
2267
2273
|
"IconBuildings": "buildings, company, workspace",
|
|
2268
2274
|
"IconBulletList": "bullet-list",
|
|
2269
2275
|
"IconBun": "bun",
|
|
@@ -2817,6 +2823,7 @@
|
|
|
2817
2823
|
"IconH2": "h2, heading, headline",
|
|
2818
2824
|
"IconH3": "h3, heading, headline",
|
|
2819
2825
|
"IconHammer": "hammer, craft, build",
|
|
2826
|
+
"IconHammer2": "hammer-2, crafting, building",
|
|
2820
2827
|
"IconHand4Finger": "hand-4-finger, select",
|
|
2821
2828
|
"IconHand5Finger": "hand-5-finger, select",
|
|
2822
2829
|
"IconHandBell": "hand-bell",
|
|
@@ -3330,10 +3337,12 @@
|
|
|
3330
3337
|
"IconShareOs": "share-os",
|
|
3331
3338
|
"IconShareScreen": "share-screen, screen-sharing",
|
|
3332
3339
|
"IconShield": "shield, security, protection",
|
|
3340
|
+
"IconShield2": "shield-2, safety, privacy",
|
|
3333
3341
|
"IconShieldBreak": "shield-break, not-secure",
|
|
3334
3342
|
"IconShieldCheck": "shield-check, security, protection",
|
|
3335
3343
|
"IconShieldCheck2": "shield-check-2, protect, security, check",
|
|
3336
3344
|
"IconShieldCheck3": "shield-check-3, check",
|
|
3345
|
+
"IconShieldCode": "shield-code, sandbox",
|
|
3337
3346
|
"IconShieldCrossed": "shield-crossed, security, protection",
|
|
3338
3347
|
"IconShieldKeyhole": "shield-keyhole",
|
|
3339
3348
|
"IconShift": "shift",
|
|
@@ -3566,6 +3575,7 @@
|
|
|
3566
3575
|
"IconTrashCanSimple": "trash-can-simple, delete, remove, garbage, waste",
|
|
3567
3576
|
"IconTrashPaper": "trash-paper",
|
|
3568
3577
|
"IconTrashPermanently": "trash-permanently, remove",
|
|
3578
|
+
"IconTrashRounded": "trash-rounded, delete, remove",
|
|
3569
3579
|
"IconTreasure": "treasure, chest",
|
|
3570
3580
|
"IconTree": "tree",
|
|
3571
3581
|
"IconTrending1": "trending-1, trends",
|
package/index.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ export { IconBubbles, default as IconBubblesDefault } from "./IconBubbles";
|
|
|
317
317
|
export { IconBucket, default as IconBucketDefault } from "./IconBucket";
|
|
318
318
|
export { IconBug, default as IconBugDefault } from "./IconBug";
|
|
319
319
|
export { IconBugFace, default as IconBugFaceDefault } from "./IconBugFace";
|
|
320
|
+
export { IconBuildingBlocks, default as IconBuildingBlocksDefault, } from "./IconBuildingBlocks";
|
|
320
321
|
export { IconBuildings, default as IconBuildingsDefault, } from "./IconBuildings";
|
|
321
322
|
export { IconBulletList, default as IconBulletListDefault, } from "./IconBulletList";
|
|
322
323
|
export { IconBun, default as IconBunDefault } from "./IconBun";
|
|
@@ -870,6 +871,7 @@ export { IconH1, default as IconH1Default } from "./IconH1";
|
|
|
870
871
|
export { IconH2, default as IconH2Default } from "./IconH2";
|
|
871
872
|
export { IconH3, default as IconH3Default } from "./IconH3";
|
|
872
873
|
export { IconHammer, default as IconHammerDefault } from "./IconHammer";
|
|
874
|
+
export { IconHammer2, default as IconHammer2Default } from "./IconHammer2";
|
|
873
875
|
export { IconHand4Finger, default as IconHand4FingerDefault, } from "./IconHand4Finger";
|
|
874
876
|
export { IconHand5Finger, default as IconHand5FingerDefault, } from "./IconHand5Finger";
|
|
875
877
|
export { IconHandBell, default as IconHandBellDefault } from "./IconHandBell";
|
|
@@ -1383,10 +1385,12 @@ export { IconShareArrowDown, default as IconShareArrowDownDefault, } from "./Ico
|
|
|
1383
1385
|
export { IconShareOs, default as IconShareOsDefault } from "./IconShareOs";
|
|
1384
1386
|
export { IconShareScreen, default as IconShareScreenDefault, } from "./IconShareScreen";
|
|
1385
1387
|
export { IconShield, default as IconShieldDefault } from "./IconShield";
|
|
1388
|
+
export { IconShield2, default as IconShield2Default } from "./IconShield2";
|
|
1386
1389
|
export { IconShieldBreak, default as IconShieldBreakDefault, } from "./IconShieldBreak";
|
|
1387
1390
|
export { IconShieldCheck, default as IconShieldCheckDefault, } from "./IconShieldCheck";
|
|
1388
1391
|
export { IconShieldCheck2, default as IconShieldCheck2Default, } from "./IconShieldCheck2";
|
|
1389
1392
|
export { IconShieldCheck3, default as IconShieldCheck3Default, } from "./IconShieldCheck3";
|
|
1393
|
+
export { IconShieldCode, default as IconShieldCodeDefault, } from "./IconShieldCode";
|
|
1390
1394
|
export { IconShieldCrossed, default as IconShieldCrossedDefault, } from "./IconShieldCrossed";
|
|
1391
1395
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault, } from "./IconShieldKeyhole";
|
|
1392
1396
|
export { IconShift, default as IconShiftDefault } from "./IconShift";
|
|
@@ -1619,6 +1623,7 @@ export { IconTrashCan, default as IconTrashCanDefault } from "./IconTrashCan";
|
|
|
1619
1623
|
export { IconTrashCanSimple, default as IconTrashCanSimpleDefault, } from "./IconTrashCanSimple";
|
|
1620
1624
|
export { IconTrashPaper, default as IconTrashPaperDefault, } from "./IconTrashPaper";
|
|
1621
1625
|
export { IconTrashPermanently, default as IconTrashPermanentlyDefault, } from "./IconTrashPermanently";
|
|
1626
|
+
export { IconTrashRounded, default as IconTrashRoundedDefault, } from "./IconTrashRounded";
|
|
1622
1627
|
export { IconTreasure, default as IconTreasureDefault } from "./IconTreasure";
|
|
1623
1628
|
export { IconTree, default as IconTreeDefault } from "./IconTree";
|
|
1624
1629
|
export { IconTrending1, default as IconTrending1Default, } from "./IconTrending1";
|