@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.223 → 1.1.225
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/IconMapEditFlat/index.d.ts +4 -0
- package/IconMapEditFlat/index.js +2 -0
- package/IconMapEditFlat/index.js.map +1 -0
- package/IconMapEditFlat/index.mjs +2 -0
- package/IconMapEditFlat/index.mjs.map +1 -0
- package/IconOwlFace/index.d.ts +4 -0
- package/IconOwlFace/index.js +2 -0
- package/IconOwlFace/index.js.map +1 -0
- package/IconOwlFace/index.mjs +2 -0
- package/IconOwlFace/index.mjs.map +1 -0
- package/IconShieldAccess/index.d.ts +4 -0
- package/IconShieldAccess/index.js +2 -0
- package/IconShieldAccess/index.js.map +1 -0
- package/IconShieldAccess/index.mjs +2 -0
- package/IconShieldAccess/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -5
- package/index.d.ts +3 -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/skills/central-icons-react-native/SKILL.md +4 -1
- package/tsx-icons.json +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of k(o))!I.call(r,n)&&n!==e&&s(r,n,{get:()=>o[n],enumerable:!(a=d(o,n))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(B(r)):{},C(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>C(s({},"__esModule",{value:!0}),r);var H={};x(H,{IconMapEditFlat:()=>i,default:()=>g});module.exports=P(H);var t=l(require("react"));var c=l(require("react")),u=require("react-native-svg"),m=({children:r,size:o=24,...e})=>c.default.createElement(u.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>t.default.createElement(m,{...r},t.default.createElement(p.Path,{d:"M13.5 6.5H7.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(p.Path,{d:"M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(p.Path,{d:"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z",stroke:"currentColor",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square"})),g=i;0&&(module.exports={IconMapEditFlat});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapEditFlat/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 IconMapEditFlat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M13.5 6.5H7.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapEditFlat;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QACC,EAAE,sFACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qFACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2JACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconMapEditFlat_exports","__export","IconMapEditFlat","IconMapEditFlat_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMapEditFlat","props","React","CentralIconBase","IconMapEditFlat_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(a,{...p,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}from"react-native-svg";var C=t=>o.createElement(n,{...t},o.createElement(e,{d:"M13.5 6.5H7.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(e,{d:"M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(e,{d:"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square"})),I=C;export{C as IconMapEditFlat,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapEditFlat/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 IconMapEditFlat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M13.5 6.5H7.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapEditFlat;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEG,EAAA,cAACH,EAAA,CACC,EAAE,sFACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qFACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2JACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMapEditFlat","props","React","CentralIconBase","IconMapEditFlat_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var C=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,y=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of B(o))!y.call(r,l)&&l!==e&&C(r,l,{get:()=>o[l],enumerable:!(p=x(o,l))||p.enumerable});return r};var s=(r,o,e)=>(e=r!=null?i(I(r)):{},c(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>c(C({},"__esModule",{value:!0}),r);var k={};P(k,{IconOwlFace:()=>f,default:()=>g});module.exports=d(k);var n=s(require("react"));var m=s(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...e})=>m.default.createElement(u.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 t=require("react-native-svg"),f=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M12 12C12 9.37665 9.87335 7.25 7.25 7.25C4.62665 7.25 2.5 9.37665 2.5 12",stroke:"currentColor"}),n.default.createElement(t.Path,{d:"M21.5 12C21.5 9.37665 19.3734 7.25 16.75 7.25C14.1266 7.25 12 9.37665 12 12",stroke:"currentColor"}),n.default.createElement(t.Circle,{cx:"7.5",cy:"12",r:"1.25",fill:"currentColor"}),n.default.createElement(t.Circle,{cx:"16.5",cy:"12",r:"1.25",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M12 12V15",stroke:"currentColor",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),g=f;0&&(module.exports={IconOwlFace});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOwlFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconOwlFace: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 12C12 9.37665 9.87335 7.25 7.25 7.25C4.62665 7.25 2.5 9.37665 2.5 12\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M21.5 12C21.5 9.37665 19.3734 7.25 16.75 7.25C14.1266 7.25 12 9.37665 12 12\"\n stroke=\"currentColor\"\n />\n <Circle cx=\"7.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\" />\n <Circle cx=\"16.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\" />\n <Path d=\"M12 12V15\" stroke=\"currentColor\" strokeLinejoin=\"round\" />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconOwlFace;\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,EAA6B,4BAEhBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2EACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8EACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,eAAe,QAAQ,EACjE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGE,EAAQJ","names":["IconOwlFace_exports","__export","IconOwlFace","IconOwlFace_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconOwlFace","props","React","CentralIconBase","IconOwlFace_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as c}from"react-native-svg";var l=({children:e,size:o=24,...C})=>p.createElement(c,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as n,Path as t}from"react-native-svg";var s=e=>r.createElement(l,{...e},r.createElement(t,{d:"M12 12C12 9.37665 9.87335 7.25 7.25 7.25C4.62665 7.25 2.5 9.37665 2.5 12",stroke:"currentColor"}),r.createElement(t,{d:"M21.5 12C21.5 9.37665 19.3734 7.25 16.75 7.25C14.1266 7.25 12 9.37665 12 12",stroke:"currentColor"}),r.createElement(n,{cx:"7.5",cy:"12",r:"1.25",fill:"currentColor"}),r.createElement(n,{cx:"16.5",cy:"12",r:"1.25",fill:"currentColor"}),r.createElement(t,{d:"M12 12V15",stroke:"currentColor",strokeLinejoin:"round"}),r.createElement(n,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),P=s;export{s as IconOwlFace,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOwlFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconOwlFace: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 12C12 9.37665 9.87335 7.25 7.25 7.25C4.62665 7.25 2.5 9.37665 2.5 12\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M21.5 12C21.5 9.37665 19.3734 7.25 16.75 7.25C14.1266 7.25 12 9.37665 12 12\"\n stroke=\"currentColor\"\n />\n <Circle cx=\"7.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\" />\n <Circle cx=\"16.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\" />\n <Path d=\"M12 12V15\" stroke=\"currentColor\" strokeLinejoin=\"round\" />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconOwlFace;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2EACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8EACF,OAAO,eACT,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACtDI,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACvDI,EAAA,cAACH,EAAA,CAAK,EAAE,YAAY,OAAO,eAAe,eAAe,QAAQ,EACjEG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconOwlFace","props","React","CentralIconBase","IconOwlFace_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(l=x(o,t))||l.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},s(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>s(p({},"__esModule",{value:!0}),r);var v={};g(v,{IconShieldAccess:()=>i,default:()=>h});module.exports=d(v);var n=c(require("react"));var a=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>a.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>n.default.createElement(f,{...r},n.default.createElement(C.Path,{d:"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(C.Circle,{cx:"12",cy:"16",r:"1",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M11.46 13C11.82 13 12.18 13 12.54 13C12.5425 12.9083 12.545 12.8167 12.5475 12.725C12.5925 11.075 12.6375 9.425 12.6825 7.775C12.685 7.68333 12.6875 7.59167 12.69 7.5C12.23 7.5 11.77 7.5 11.31 7.5C11.3125 7.59167 11.315 7.68333 11.3175 7.775C11.3625 9.425 11.4075 11.075 11.4525 12.725C11.455 12.8167 11.4575 12.9083 11.46 13Z",fill:"currentColor"})),h=i;0&&(module.exports={IconShieldAccess});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShieldAccess/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconShieldAccess: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Circle cx=\"12\" cy=\"16\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M11.46 13C11.82 13 12.18 13 12.54 13C12.5425 12.9083 12.545 12.8167 12.5475 12.725C12.5925 11.075 12.6375 9.425 12.6825 7.775C12.685 7.68333 12.6875 7.59167 12.69 7.5C12.23 7.5 11.77 7.5 11.31 7.5C11.3125 7.59167 11.315 7.68333 11.3175 7.775C11.3625 9.425 11.4075 11.075 11.4525 12.725C11.455 12.8167 11.4575 12.9083 11.46 13Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShieldAccess;\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,EAA6B,4BAEhBC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mGACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QACC,EAAE,yUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconShieldAccess_exports","__export","IconShieldAccess","IconShieldAccess_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconShieldAccess","props","React","CentralIconBase","IconShieldAccess_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as s,Path as n}from"react-native-svg";var c=e=>o.createElement(t,{...e},o.createElement(n,{d:"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(s,{cx:"12",cy:"16",r:"1",fill:"currentColor"}),o.createElement(n,{d:"M11.46 13C11.82 13 12.18 13 12.54 13C12.5425 12.9083 12.545 12.8167 12.5475 12.725C12.5925 11.075 12.6375 9.425 12.6825 7.775C12.685 7.68333 12.6875 7.59167 12.69 7.5C12.23 7.5 11.77 7.5 11.31 7.5C11.3125 7.59167 11.315 7.68333 11.3175 7.775C11.3625 9.425 11.4075 11.075 11.4525 12.725C11.455 12.8167 11.4575 12.9083 11.46 13Z",fill:"currentColor"})),g=c;export{c as IconShieldAccess,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShieldAccess/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconShieldAccess: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Circle cx=\"12\" cy=\"16\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M11.46 13C11.82 13 12.18 13 12.54 13C12.5425 12.9083 12.545 12.8167 12.5475 12.725C12.5925 11.075 12.6375 9.425 12.6825 7.775C12.685 7.68333 12.6875 7.59167 12.69 7.5C12.23 7.5 11.77 7.5 11.31 7.5C11.3125 7.59167 11.315 7.68333 11.3175 7.775C11.3625 9.425 11.4075 11.075 11.4525 12.725C11.455 12.8167 11.4575 12.9083 11.46 13Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShieldAccess;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mGACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAe,EAClDI,EAAA,cAACH,EAAA,CACC,EAAE,yUACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconShieldAccess","props","React","CentralIconBase","IconShieldAccess_default"]}
|
package/README.md
CHANGED
|
@@ -1333,6 +1333,7 @@ Below is a complete list of available icons:
|
|
|
1333
1333
|
- IconInitiatives
|
|
1334
1334
|
- IconLocation
|
|
1335
1335
|
- IconMap
|
|
1336
|
+
- IconMapEditFlat
|
|
1336
1337
|
- IconMapPin
|
|
1337
1338
|
- IconMapPin2
|
|
1338
1339
|
- IconMapPinFlat
|
|
@@ -1537,6 +1538,7 @@ Below is a complete list of available icons:
|
|
|
1537
1538
|
- IconSafeSimple
|
|
1538
1539
|
- IconShield
|
|
1539
1540
|
- IconShield2
|
|
1541
|
+
- IconShieldAccess
|
|
1540
1542
|
- IconShieldBreak
|
|
1541
1543
|
- IconShieldCheck
|
|
1542
1544
|
- IconShieldCheck2
|
|
@@ -1974,6 +1976,7 @@ Below is a complete list of available icons:
|
|
|
1974
1976
|
- IconMouth
|
|
1975
1977
|
- IconNailedIt
|
|
1976
1978
|
- IconOrganisation
|
|
1979
|
+
- IconOwlFace
|
|
1977
1980
|
- IconParachute
|
|
1978
1981
|
- IconParasol
|
|
1979
1982
|
- IconPeace
|
package/filtered-icons.json
CHANGED
|
@@ -15974,6 +15974,20 @@
|
|
|
15974
15974
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
15975
15975
|
"componentName": "IconMap"
|
|
15976
15976
|
},
|
|
15977
|
+
{
|
|
15978
|
+
"category": "Location",
|
|
15979
|
+
"svg": "<path d=\"M13.5 6.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
15980
|
+
"iconName": "map-edit-flat, route, plan",
|
|
15981
|
+
"variant": {
|
|
15982
|
+
"join": "square",
|
|
15983
|
+
"filled": "off",
|
|
15984
|
+
"radius": "0",
|
|
15985
|
+
"stroke": "1"
|
|
15986
|
+
},
|
|
15987
|
+
"createdAt": "2026-05-05T09:01:52.83652+00:00",
|
|
15988
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
15989
|
+
"componentName": "IconMapEditFlat"
|
|
15990
|
+
},
|
|
15977
15991
|
{
|
|
15978
15992
|
"category": "Location",
|
|
15979
15993
|
"svg": "<path d=\"M14.4978 10C14.4978 11.3807 13.3785 12.5 11.9978 12.5C10.6171 12.5 9.4978 11.3807 9.4978 10C9.4978 8.61929 10.6171 7.5 11.9978 7.5C13.3785 7.5 14.4978 8.61929 14.4978 10Z\" stroke=\"currentColor\"/><path d=\"M19.5 10C19.5 16.1919 12 21.5 12 21.5C12 21.5 4.5 16.1919 4.5 10C4.5 5.75 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.75 19.5 10Z\" stroke=\"currentColor\"/>",
|
|
@@ -17794,6 +17808,20 @@
|
|
|
17794
17808
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
17795
17809
|
"componentName": "IconOrganisation"
|
|
17796
17810
|
},
|
|
17811
|
+
{
|
|
17812
|
+
"category": "Things",
|
|
17813
|
+
"svg": "<path d=\"M12 12C12 9.37665 9.87335 7.25 7.25 7.25C4.62665 7.25 2.5 9.37665 2.5 12\" stroke=\"currentColor\"/><path d=\"M21.5 12C21.5 9.37665 19.3734 7.25 16.75 7.25C14.1266 7.25 12 9.37665 12 12\" stroke=\"currentColor\"/><circle cx=\"7.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"12\" r=\"1.25\" fill=\"currentColor\"/><path d=\"M12 12V15\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/>",
|
|
17814
|
+
"iconName": "owl-face, learning, reading, research",
|
|
17815
|
+
"variant": {
|
|
17816
|
+
"join": "square",
|
|
17817
|
+
"filled": "off",
|
|
17818
|
+
"radius": "0",
|
|
17819
|
+
"stroke": "1"
|
|
17820
|
+
},
|
|
17821
|
+
"createdAt": "2026-05-04T07:02:04.556443+00:00",
|
|
17822
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
17823
|
+
"componentName": "IconOwlFace"
|
|
17824
|
+
},
|
|
17797
17825
|
{
|
|
17798
17826
|
"category": "Shopping & Payment",
|
|
17799
17827
|
"svg": "<path d=\"M8.5 3.5V9.5H15.5V3.5M14 16.5H16.5M3.5 3.5V20.5H20.5V3.5H3.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -21896,6 +21924,20 @@
|
|
|
21896
21924
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
21897
21925
|
"componentName": "IconShield2"
|
|
21898
21926
|
},
|
|
21927
|
+
{
|
|
21928
|
+
"category": "Security",
|
|
21929
|
+
"svg": "<path d=\"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><circle cx=\"12\" cy=\"16\" r=\"1\" fill=\"currentColor\"/><path d=\"M11.46 13C11.82 13 12.18 13 12.54 13C12.5425 12.9083 12.545 12.8167 12.5475 12.725C12.5925 11.075 12.6375 9.425 12.6825 7.775C12.685 7.68333 12.6875 7.59167 12.69 7.5C12.23 7.5 11.77 7.5 11.31 7.5C11.3125 7.59167 11.315 7.68333 11.3175 7.775C11.3625 9.425 11.4075 11.075 11.4525 12.725C11.455 12.8167 11.4575 12.9083 11.46 13Z\" fill=\"currentColor\"/>",
|
|
21930
|
+
"iconName": "shield-access, full-access",
|
|
21931
|
+
"variant": {
|
|
21932
|
+
"join": "square",
|
|
21933
|
+
"filled": "off",
|
|
21934
|
+
"radius": "0",
|
|
21935
|
+
"stroke": "1"
|
|
21936
|
+
},
|
|
21937
|
+
"createdAt": "2026-05-04T07:02:04.556443+00:00",
|
|
21938
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
21939
|
+
"componentName": "IconShieldAccess"
|
|
21940
|
+
},
|
|
21899
21941
|
{
|
|
21900
21942
|
"category": "AI & Magic",
|
|
21901
21943
|
"svg": "<path d=\"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.4 7.9541H11.6L10.6 10.5541L8 11.5541V12.3541L10.6 13.3541L11.6 15.9541H12.4L13.4 13.3541L16 12.3541V11.5541L13.4 10.5541L12.4 7.9541Z\" stroke=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1140,6 +1140,7 @@ export type CentralIconName =
|
|
|
1140
1140
|
| "IconMall"
|
|
1141
1141
|
| "IconManusAi"
|
|
1142
1142
|
| "IconMap"
|
|
1143
|
+
| "IconMapEditFlat"
|
|
1143
1144
|
| "IconMapPin"
|
|
1144
1145
|
| "IconMapPin2"
|
|
1145
1146
|
| "IconMapPinFlat"
|
|
@@ -1270,6 +1271,7 @@ export type CentralIconName =
|
|
|
1270
1271
|
| "IconOptionKey"
|
|
1271
1272
|
| "IconOrange"
|
|
1272
1273
|
| "IconOrganisation"
|
|
1274
|
+
| "IconOwlFace"
|
|
1273
1275
|
| "IconPackage"
|
|
1274
1276
|
| "IconPackageAdd"
|
|
1275
1277
|
| "IconPackageBlock"
|
|
@@ -1563,6 +1565,7 @@ export type CentralIconName =
|
|
|
1563
1565
|
| "IconShareScreen"
|
|
1564
1566
|
| "IconShield"
|
|
1565
1567
|
| "IconShield2"
|
|
1568
|
+
| "IconShieldAccess"
|
|
1566
1569
|
| "IconShieldAi"
|
|
1567
1570
|
| "IconShieldBreak"
|
|
1568
1571
|
| "IconShieldCheck"
|
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.225",
|
|
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": 1984,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -1236,7 +1236,7 @@
|
|
|
1236
1236
|
]
|
|
1237
1237
|
},
|
|
1238
1238
|
"Location": {
|
|
1239
|
-
"count":
|
|
1239
|
+
"count": 19,
|
|
1240
1240
|
"icons": [
|
|
1241
1241
|
"IconDirection1",
|
|
1242
1242
|
"IconDirection2",
|
|
@@ -1246,6 +1246,7 @@
|
|
|
1246
1246
|
"IconInitiatives",
|
|
1247
1247
|
"IconLocation",
|
|
1248
1248
|
"IconMap",
|
|
1249
|
+
"IconMapEditFlat",
|
|
1249
1250
|
"IconMapPin",
|
|
1250
1251
|
"IconMapPin2",
|
|
1251
1252
|
"IconMapPinFlat",
|
|
@@ -1436,7 +1437,7 @@
|
|
|
1436
1437
|
]
|
|
1437
1438
|
},
|
|
1438
1439
|
"Security": {
|
|
1439
|
-
"count":
|
|
1440
|
+
"count": 33,
|
|
1440
1441
|
"icons": [
|
|
1441
1442
|
"IconAnonymous",
|
|
1442
1443
|
"IconAsterisk",
|
|
@@ -1458,6 +1459,7 @@
|
|
|
1458
1459
|
"IconSafeSimple",
|
|
1459
1460
|
"IconShield",
|
|
1460
1461
|
"IconShield2",
|
|
1462
|
+
"IconShieldAccess",
|
|
1461
1463
|
"IconShieldBreak",
|
|
1462
1464
|
"IconShieldCheck",
|
|
1463
1465
|
"IconShieldCheck2",
|
|
@@ -1830,7 +1832,7 @@
|
|
|
1830
1832
|
]
|
|
1831
1833
|
},
|
|
1832
1834
|
"Things": {
|
|
1833
|
-
"count":
|
|
1835
|
+
"count": 141,
|
|
1834
1836
|
"icons": [
|
|
1835
1837
|
"IconAnvil",
|
|
1836
1838
|
"IconApps",
|
|
@@ -1907,6 +1909,7 @@
|
|
|
1907
1909
|
"IconMouth",
|
|
1908
1910
|
"IconNailedIt",
|
|
1909
1911
|
"IconOrganisation",
|
|
1912
|
+
"IconOwlFace",
|
|
1910
1913
|
"IconParachute",
|
|
1911
1914
|
"IconParasol",
|
|
1912
1915
|
"IconPeace",
|
|
@@ -3323,6 +3326,7 @@
|
|
|
3323
3326
|
"IconMall": "mall, store, shop, business",
|
|
3324
3327
|
"IconManusAi": "manus-ai",
|
|
3325
3328
|
"IconMap": "map, paper",
|
|
3329
|
+
"IconMapEditFlat": "map-edit-flat, route, plan",
|
|
3326
3330
|
"IconMapPin": "map-pin, location",
|
|
3327
3331
|
"IconMapPin2": "map-pin-2, location",
|
|
3328
3332
|
"IconMapPinFlat": "map-pin-flat, route",
|
|
@@ -3453,6 +3457,7 @@
|
|
|
3453
3457
|
"IconOptionKey": "option-key",
|
|
3454
3458
|
"IconOrange": "orange",
|
|
3455
3459
|
"IconOrganisation": "organisation, organimgram",
|
|
3460
|
+
"IconOwlFace": "owl-face, learning, reading, research",
|
|
3456
3461
|
"IconPackage": "package, delivery",
|
|
3457
3462
|
"IconPackageAdd": "package-add, delivery",
|
|
3458
3463
|
"IconPackageBlock": "package-block, delivery",
|
|
@@ -3746,6 +3751,7 @@
|
|
|
3746
3751
|
"IconShareScreen": "share-screen, screen-sharing",
|
|
3747
3752
|
"IconShield": "shield, security, protection",
|
|
3748
3753
|
"IconShield2": "shield-2, safety, privacy",
|
|
3754
|
+
"IconShieldAccess": "shield-access, full-access",
|
|
3749
3755
|
"IconShieldAi": "shield-ai, security, safety, privacy, cyber",
|
|
3750
3756
|
"IconShieldBreak": "shield-break, not-secure",
|
|
3751
3757
|
"IconShieldCheck": "shield-check, security, protection",
|
package/index.d.ts
CHANGED
|
@@ -1139,6 +1139,7 @@ export { IconMakeItPop, default as IconMakeItPopDefault, } from "./IconMakeItPop
|
|
|
1139
1139
|
export { IconMall, default as IconMallDefault } from "./IconMall";
|
|
1140
1140
|
export { IconManusAi, default as IconManusAiDefault } from "./IconManusAi";
|
|
1141
1141
|
export { IconMap, default as IconMapDefault } from "./IconMap";
|
|
1142
|
+
export { IconMapEditFlat, default as IconMapEditFlatDefault, } from "./IconMapEditFlat";
|
|
1142
1143
|
export { IconMapPin, default as IconMapPinDefault } from "./IconMapPin";
|
|
1143
1144
|
export { IconMapPin2, default as IconMapPin2Default } from "./IconMapPin2";
|
|
1144
1145
|
export { IconMapPinFlat, default as IconMapPinFlatDefault, } from "./IconMapPinFlat";
|
|
@@ -1269,6 +1270,7 @@ export { IconOptAlt, default as IconOptAltDefault } from "./IconOptAlt";
|
|
|
1269
1270
|
export { IconOptionKey, default as IconOptionKeyDefault, } from "./IconOptionKey";
|
|
1270
1271
|
export { IconOrange, default as IconOrangeDefault } from "./IconOrange";
|
|
1271
1272
|
export { IconOrganisation, default as IconOrganisationDefault, } from "./IconOrganisation";
|
|
1273
|
+
export { IconOwlFace, default as IconOwlFaceDefault } from "./IconOwlFace";
|
|
1272
1274
|
export { IconPackage, default as IconPackageDefault } from "./IconPackage";
|
|
1273
1275
|
export { IconPackageAdd, default as IconPackageAddDefault, } from "./IconPackageAdd";
|
|
1274
1276
|
export { IconPackageBlock, default as IconPackageBlockDefault, } from "./IconPackageBlock";
|
|
@@ -1562,6 +1564,7 @@ export { IconShareOs, default as IconShareOsDefault } from "./IconShareOs";
|
|
|
1562
1564
|
export { IconShareScreen, default as IconShareScreenDefault, } from "./IconShareScreen";
|
|
1563
1565
|
export { IconShield, default as IconShieldDefault } from "./IconShield";
|
|
1564
1566
|
export { IconShield2, default as IconShield2Default } from "./IconShield2";
|
|
1567
|
+
export { IconShieldAccess, default as IconShieldAccessDefault, } from "./IconShieldAccess";
|
|
1565
1568
|
export { IconShieldAi, default as IconShieldAiDefault } from "./IconShieldAi";
|
|
1566
1569
|
export { IconShieldBreak, default as IconShieldBreakDefault, } from "./IconShieldBreak";
|
|
1567
1570
|
export { IconShieldCheck, default as IconShieldCheckDefault, } from "./IconShieldCheck";
|