@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.301 → 1.1.302

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChart8: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconChart8;
@@ -0,0 +1,3 @@
1
+ var L=Object.create;var{getPrototypeOf:W,defineProperty:C,getOwnPropertyNames:F,getOwnPropertyDescriptor:c}=Object,f=Object.prototype.hasOwnProperty;function a(r){return this[r]}var y,P,B=(r,e,i)=>{var s=r!=null&&typeof r==="object";if(s){var d=e?y??=new WeakMap:P??=new WeakMap,l=d.get(r);if(l)return l}i=r!=null?L(W(r)):{};let k=e||!r||!r.__esModule?C(i,"default",{value:r,enumerable:!0}):i;for(let p of F(r))if(!f.call(k,p))C(k,p,{get:a.bind(r,p),enumerable:!0});if(s)d.set(r,k);return k},g=(r)=>{var e=(u??=new WeakMap).get(r),i;if(e)return e;if(e=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of F(r))if(!f.call(e,s))C(e,s,{get:a.bind(r,s),enumerable:!(i=c(r,s))||i.enumerable})}return u.set(r,e),e},u;var M=(r)=>r;function I(r,e){this[r]=M.bind(null,e)}var w=(r,e)=>{for(var i in e)C(r,i,{get:e[i],enumerable:!0,configurable:!0,set:I.bind(e,i)})};var _={};w(_,{CentralIconBase:()=>m});module.exports=g(_);var n=B(require("react")),h=require("react-native-svg"),m=({children:r,size:e=24,mode:i="masked",maskId:s,...d})=>{let l=i!=="raw"&&!!s;return n.default.createElement(h.Svg,{...d,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},l?n.default.createElement(n.default.Fragment,null,n.default.createElement(h.Mask,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement(h.Rect,{width:"24",height:"24",fill:"#000"}),n.default.createElement(h.G,{color:"#fff"},r)),n.default.createElement(h.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):r)};var v={};w(v,{default:()=>G,IconChart8:()=>x});module.exports=g(v);var t=B(require("react"));var o=require("react-native-svg"),x=t.default.memo((r)=>{return t.default.createElement(m,{...r,maskId:"square-outlined-radius-0-stroke-2-IconChart8"},t.default.createElement(o.G,{ClipPath:"url(#clip0_15619_27832)"},t.default.createElement(o.G,{ClipPath:"url(#clip1_15619_27832)"},t.default.createElement(o.Rect,{width:"24",height:"24",fill:"#FFB5CC","fill-opacity":"0.03"}),t.default.createElement(o.Rect,{x:"3",y:"3",width:"18",height:"18",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Rect,{x:"4",y:"2",width:"16",height:"20",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Rect,{x:"2",y:"4",width:"20",height:"16",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Circle,{cx:"12",cy:"12",r:"8.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Circle,{cx:"12",cy:"12",r:"8.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Circle,{cx:"12",cy:"12",r:"9.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Path,{d:"M0 0L24 24M24 0L0 24",stroke:"#FFB5CC",strokeWidth:"0.1"}),t.default.createElement(o.Path,{d:"M8 12L12 8L16 12L12 16L8 12Z",stroke:"#FFB5CC",strokeWidth:"0.1",strokeLinecap:"round"}),t.default.createElement(o.Path,{d:"M7 12L12 7L17 12L12 17L7 12Z",stroke:"#FFB5CC",strokeWidth:"0.1",strokeLinecap:"round"})),t.default.createElement(o.Path,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),t.default.createElement(o.Path,{d:"M12 16V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(o.Path,{d:"M8 16V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(o.Path,{d:"M16 16V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),t.default.createElement(o.Defs,null,t.default.createElement(o.ClipPath,{id:"clip0_15619_27832"},t.default.createElement(o.Rect,{width:"24",height:"24",fill:"white"})),t.default.createElement(o.ClipPath,{id:"clip1_15619_27832"},t.default.createElement(o.Rect,{width:"24",height:"24",fill:"white"}))))}),G=x;
2
+
3
+ //# debugId=5014477FEF4010E764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconChart8/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconChart8: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChart8\"><G ClipPath=\"url(#clip0_15619_27832)\"><G ClipPath=\"url(#clip1_15619_27832)\"><Rect width=\"24\" height=\"24\" fill=\"#FFB5CC\" fill-opacity=\"0.03\"/><Rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Rect x=\"4\" y=\"2\" width=\"16\" height=\"20\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Rect x=\"2\" y=\"4\" width=\"20\" height=\"16\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"8.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"8.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"9.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Path d=\"M0 0L24 24M24 0L0 24\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Path d=\"M8 12L12 8L16 12L12 16L8 12Z\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\" strokeLinecap=\"round\"/><Path d=\"M7 12L12 7L17 12L12 17L7 12Z\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\" strokeLinecap=\"round\"/></G><Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 16V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 16V13\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 16V11\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></G><Defs><ClipPath id=\"clip0_15619_27832\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath><ClipPath id=\"clip1_15619_27832\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n});\n\nexport default IconChart8;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,sEChDY,IAAlB,sBAEsD,IAAtD,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAAq5C,EAAr5C,IAAqB,EAAO,OAAO,gDAA+C,wBAAooC,IAApoC,CAAG,SAAS,2BAA0B,wBAAoyB,IAApyB,CAAG,SAAS,2BAA0B,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,UAAU,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,UAAU,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,+BAA+B,OAAO,UAAU,YAAY,MAAM,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+BAA+B,OAAO,UAAU,YAAY,MAAM,cAAc,QAAO,CAAI,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EAAE,wBAAsL,OAAtL,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,EAAS,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EAC75C,EAEc",
9
+ "debugId": "5014477FEF4010E764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as F,Mask as f,Rect as C,G as a}from"react-native-svg";var d=({children:s,size:e=24,mode:p="masked",maskId:h,...m})=>{let u=p!=="raw"&&!!h;return o.createElement(F,{...m,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},u?o.createElement(o.Fragment,null,o.createElement(f,{id:h,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(a,{color:"#fff"},s)),o.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${h})`})):s)};import r from"react";import{Circle as n,ClipPath as l,Defs as B,G as k,Path as t,Rect as i}from"react-native-svg";var g=r.memo((s)=>{return r.createElement(d,{...s,maskId:"square-outlined-radius-0-stroke-2-IconChart8"},r.createElement(k,{ClipPath:"url(#clip0_15619_27832)"},r.createElement(k,{ClipPath:"url(#clip1_15619_27832)"},r.createElement(i,{width:"24",height:"24",fill:"#FFB5CC","fill-opacity":"0.03"}),r.createElement(i,{x:"3",y:"3",width:"18",height:"18",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(i,{x:"4",y:"2",width:"16",height:"20",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(i,{x:"2",y:"4",width:"20",height:"16",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(n,{cx:"12",cy:"12",r:"8.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(n,{cx:"12",cy:"12",r:"8.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(n,{cx:"12",cy:"12",r:"9.95",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(t,{d:"M0 0L24 24M24 0L0 24",stroke:"#FFB5CC",strokeWidth:"0.1"}),r.createElement(t,{d:"M8 12L12 8L16 12L12 16L8 12Z",stroke:"#FFB5CC",strokeWidth:"0.1",strokeLinecap:"round"}),r.createElement(t,{d:"M7 12L12 7L17 12L12 17L7 12Z",stroke:"#FFB5CC",strokeWidth:"0.1",strokeLinecap:"round"})),r.createElement(t,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M12 16V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(t,{d:"M8 16V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(t,{d:"M16 16V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),r.createElement(B,null,r.createElement(l,{id:"clip0_15619_27832"},r.createElement(i,{width:"24",height:"24",fill:"white"})),r.createElement(l,{id:"clip1_15619_27832"},r.createElement(i,{width:"24",height:"24",fill:"white"}))))}),_=g;export{_ as default,g as IconChart8};
2
+
3
+ //# debugId=DDDEEDB00B3344B264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconChart8/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconChart8: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChart8\"><G ClipPath=\"url(#clip0_15619_27832)\"><G ClipPath=\"url(#clip1_15619_27832)\"><Rect width=\"24\" height=\"24\" fill=\"#FFB5CC\" fill-opacity=\"0.03\"/><Rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Rect x=\"4\" y=\"2\" width=\"16\" height=\"20\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Rect x=\"2\" y=\"4\" width=\"20\" height=\"16\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"8.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"8.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Circle cx=\"12\" cy=\"12\" r=\"9.95\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Path d=\"M0 0L24 24M24 0L0 24\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\"/><Path d=\"M8 12L12 8L16 12L12 16L8 12Z\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\" strokeLinecap=\"round\"/><Path d=\"M7 12L12 7L17 12L12 17L7 12Z\" stroke=\"#FFB5CC\" strokeWidth=\"0.1\" strokeLinecap=\"round\"/></G><Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 16V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 16V13\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 16V11\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></G><Defs><ClipPath id=\"clip0_15619_27832\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath><ClipPath id=\"clip1_15619_27832\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n});\n\nexport default IconChart8;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,cAAQ,UAAU,OAAM,UAAG,UAAM,yBAEnC,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAq5C,EAAr5C,IAAqB,EAAO,OAAO,gDAA+C,gBAAooC,EAApoC,CAAG,SAAS,2BAA0B,gBAAoyB,EAApyB,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,UAAU,eAAa,OAAM,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,uBAAuB,OAAO,UAAU,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,UAAU,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,UAAU,YAAY,MAAM,cAAc,QAAO,CAAI,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EAAE,gBAAsL,EAAtL,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,EAAS,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EAC75C,EAEc",
9
+ "debugId": "DDDEEDB00B3344B264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconShieldSafeSearch: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconShieldSafeSearch;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:w,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:L}=Object,c=Object.prototype.hasOwnProperty;function k(r){return this[r]}var P,V,S=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?P??=new WeakMap:V??=new WeakMap,i=l.get(r);if(i)return i}e=r!=null?B(w(r)):{};let p=o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let d of u(r))if(!c.call(p,d))a(p,d,{get:k.bind(r,d),enumerable:!0});if(t)l.set(r,p);return p},g=(r)=>{var o=(h??=new WeakMap).get(r),e;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!c.call(o,t))a(o,t,{get:k.bind(r,t),enumerable:!(e=L(r,t))||e.enumerable})}return h.set(r,o),o},h;var v=(r)=>r;function y(r,o){this[r]=v.bind(null,o)}var x=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var M={};x(M,{CentralIconBase:()=>f});module.exports=g(M);var C=S(require("react")),n=require("react-native-svg"),f=({children:r,size:o=24,mode:e="masked",maskId:t,...l})=>{let i=e!=="raw"&&!!t;return C.default.createElement(n.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?C.default.createElement(C.default.Fragment,null,C.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(n.G,{color:"#fff"},r)),C.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var b={};x(b,{default:()=>Z,IconShieldSafeSearch:()=>I});module.exports=g(b);var s=S(require("react"));var m=require("react-native-svg"),I=s.default.memo((r)=>{return s.default.createElement(f,{...r,maskId:"square-outlined-radius-0-stroke-2-IconShieldSafeSearch"},s.default.createElement(m.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:"square"}),s.default.createElement(m.Path,{d:"M15.1372 9.58447C15.5634 9.32886 16.1158 9.46689 16.3715 9.89307C16.6271 10.3192 16.489 10.8717 16.0629 11.1274L14.6918 11.9507C14.5009 12.0653 14.3027 12.1656 14.1 12.2544V16.5962C14.0999 17.0931 13.6966 17.4966 13.1997 17.4966C12.7028 17.4964 12.2994 17.093 12.2993 16.5962V15.0435C12.2056 15.0765 12.1054 15.0961 12.0004 15.0962C11.8953 15.0962 11.7944 15.0766 11.7006 15.0435V16.5962C11.7005 17.093 11.2971 17.4964 10.8002 17.4966C10.3033 17.4966 9.9 17.0931 9.89985 16.5962V12.2544C9.69721 12.1656 9.49903 12.0653 9.30805 11.9507L7.93696 11.1274C7.51079 10.8717 7.37273 10.3193 7.62836 9.89307C7.88409 9.46685 8.43652 9.32876 8.86274 9.58447L10.2338 10.4067C10.7671 10.7267 11.3775 10.8959 11.9995 10.896C12.6215 10.896 13.2326 10.7268 13.7661 10.4067L15.1372 9.58447Z",fill:"currentColor"}),s.default.createElement(m.Path,{d:"M12.0004 6.396C12.9942 6.39626 13.8001 7.20199 13.8002 8.1958C13.8002 9.18975 12.9943 9.99534 12.0004 9.99561C11.0063 9.99561 10.1997 9.18991 10.1997 8.1958C10.1998 7.20182 11.0064 6.396 12.0004 6.396Z",fill:"currentColor"}))}),Z=I;
2
+
3
+ //# debugId=E39E5B323884E6DC64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldSafeSearch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconShieldSafeSearch: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconShieldSafeSearch\"><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=\"square\"/><Path d=\"M15.1372 9.58447C15.5634 9.32886 16.1158 9.46689 16.3715 9.89307C16.6271 10.3192 16.489 10.8717 16.0629 11.1274L14.6918 11.9507C14.5009 12.0653 14.3027 12.1656 14.1 12.2544V16.5962C14.0999 17.0931 13.6966 17.4966 13.1997 17.4966C12.7028 17.4964 12.2994 17.093 12.2993 16.5962V15.0435C12.2056 15.0765 12.1054 15.0961 12.0004 15.0962C11.8953 15.0962 11.7944 15.0766 11.7006 15.0435V16.5962C11.7005 17.093 11.2971 17.4964 10.8002 17.4966C10.3033 17.4966 9.9 17.0931 9.89985 16.5962V12.2544C9.69721 12.1656 9.49903 12.0653 9.30805 11.9507L7.93696 11.1274C7.51079 10.8717 7.37273 10.3193 7.62836 9.89307C7.88409 9.46685 8.43652 9.32876 8.86274 9.58447L10.2338 10.4067C10.7671 10.7267 11.3775 10.8959 11.9995 10.896C12.6215 10.896 13.2326 10.7268 13.7661 10.4067L15.1372 9.58447Z\" fill=\"currentColor\"/><Path d=\"M12.0004 6.396C12.9942 6.39626 13.8001 7.20199 13.8002 8.1958C13.8002 9.18975 12.9943 9.99534 12.0004 9.99561C11.0063 9.99561 10.1997 9.18991 10.1997 8.1958C10.1998 7.20182 11.0064 6.396 12.0004 6.396Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShieldSafeSearch;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,gFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAyE,UAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,wBAAiwC,EAAjwC,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,EAAE,+EAA+E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,wwBAAwwB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,CAAI,EACzwC,EAEc",
9
+ "debugId": "E39E5B323884E6DC64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as d,Rect as s,G as f}from"react-native-svg";var a=({children:t,size:o=24,mode:l="masked",maskId:n,...i})=>{let p=l!=="raw"&&!!n;return r.createElement(m,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(f,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as C}from"react-native-svg";var h=e.memo((t)=>{return e.createElement(a,{...t,maskId:"square-outlined-radius-0-stroke-2-IconShieldSafeSearch"},e.createElement(C,{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:"square"}),e.createElement(C,{d:"M15.1372 9.58447C15.5634 9.32886 16.1158 9.46689 16.3715 9.89307C16.6271 10.3192 16.489 10.8717 16.0629 11.1274L14.6918 11.9507C14.5009 12.0653 14.3027 12.1656 14.1 12.2544V16.5962C14.0999 17.0931 13.6966 17.4966 13.1997 17.4966C12.7028 17.4964 12.2994 17.093 12.2993 16.5962V15.0435C12.2056 15.0765 12.1054 15.0961 12.0004 15.0962C11.8953 15.0962 11.7944 15.0766 11.7006 15.0435V16.5962C11.7005 17.093 11.2971 17.4964 10.8002 17.4966C10.3033 17.4966 9.9 17.0931 9.89985 16.5962V12.2544C9.69721 12.1656 9.49903 12.0653 9.30805 11.9507L7.93696 11.1274C7.51079 10.8717 7.37273 10.3193 7.62836 9.89307C7.88409 9.46685 8.43652 9.32876 8.86274 9.58447L10.2338 10.4067C10.7671 10.7267 11.3775 10.8959 11.9995 10.896C12.6215 10.896 13.2326 10.7268 13.7661 10.4067L15.1372 9.58447Z",fill:"currentColor"}),e.createElement(C,{d:"M12.0004 6.396C12.9942 6.39626 13.8001 7.20199 13.8002 8.1958C13.8002 9.18975 12.9943 9.99534 12.0004 9.99561C11.0063 9.99561 10.1997 9.18991 10.1997 8.1958C10.1998 7.20182 11.0064 6.396 12.0004 6.396Z",fill:"currentColor"}))}),L=h;export{L as default,h as IconShieldSafeSearch};
2
+
3
+ //# debugId=9A2A9D8DCB8A653E64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldSafeSearch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconShieldSafeSearch: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconShieldSafeSearch\"><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=\"square\"/><Path d=\"M15.1372 9.58447C15.5634 9.32886 16.1158 9.46689 16.3715 9.89307C16.6271 10.3192 16.489 10.8717 16.0629 11.1274L14.6918 11.9507C14.5009 12.0653 14.3027 12.1656 14.1 12.2544V16.5962C14.0999 17.0931 13.6966 17.4966 13.1997 17.4966C12.7028 17.4964 12.2994 17.093 12.2993 16.5962V15.0435C12.2056 15.0765 12.1054 15.0961 12.0004 15.0962C11.8953 15.0962 11.7944 15.0766 11.7006 15.0435V16.5962C11.7005 17.093 11.2971 17.4964 10.8002 17.4966C10.3033 17.4966 9.9 17.0931 9.89985 16.5962V12.2544C9.69721 12.1656 9.49903 12.0653 9.30805 11.9507L7.93696 11.1274C7.51079 10.8717 7.37273 10.3193 7.62836 9.89307C7.88409 9.46685 8.43652 9.32876 8.86274 9.58447L10.2338 10.4067C10.7671 10.7267 11.3775 10.8959 11.9995 10.896C12.6215 10.896 13.2326 10.7268 13.7661 10.4067L15.1372 9.58447Z\" fill=\"currentColor\"/><Path d=\"M12.0004 6.396C12.9942 6.39626 13.8001 7.20199 13.8002 8.1958C13.8002 9.18975 12.9943 9.99534 12.0004 9.99561C11.0063 9.99561 10.1997 9.18991 10.1997 8.1958C10.1998 7.20182 11.0064 6.396 12.0004 6.396Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShieldSafeSearch;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAiwC,EAAjwC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,+EAA+E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,wwBAAwwB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,CAAI,EACzwC,EAEc",
9
+ "debugId": "9A2A9D8DCB8A653E64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1655,6 +1655,7 @@ Below is a complete list of available icons:
1655
1655
  - IconLock2
1656
1656
  - IconUnlocked2
1657
1657
  - IconKeyhole2
1658
+ - IconShieldSafeSearch
1658
1659
 
1659
1660
  ### Shopping & Payment
1660
1661
 
@@ -2021,6 +2022,7 @@ Below is a complete list of available icons:
2021
2022
  - IconStackedBarChart100Axis
2022
2023
  - IconStackedBarChartHorizontal100Axis
2023
2024
  - IconTrending6
2025
+ - IconChart8
2024
2026
 
2025
2027
  ### Things
2026
2028