@central-icons-react-native/round-outlined-radius-3-stroke-1 1.1.307 → 1.1.309

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 IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAiSlopSign;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:w,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:P}=Object,g=Object.prototype.hasOwnProperty;function h(o){return this[o]}var y,v,k=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var p=r?y??=new WeakMap:v??=new WeakMap,m=p.get(o);if(m)return m}e=o!=null?B(w(o)):{};let a=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;for(let d of c(o))if(!g.call(a,d))s(a,d,{get:h.bind(o,d),enumerable:!0});if(n)p.set(o,a);return a},x=(o)=>{var r=(u??=new WeakMap).get(o),e;if(r)return r;if(r=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!g.call(r,n))s(r,n,{get:h.bind(o,n),enumerable:!(e=P(o,n))||e.enumerable})}return u.set(o,r),r},u;var L=(o)=>o;function M(o,r){this[o]=L.bind(null,r)}var I=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>f});module.exports=x(b);var C=k(require("react")),t=require("react-native-svg"),f=({children:o,size:r=24,mode:e="masked",maskId:n,...p})=>{let m=e!=="raw"&&!!n;return C.default.createElement(t.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?C.default.createElement(C.default.Fragment,null,C.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(t.G,{color:"#fff"},o)),C.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var $={};I($,{default:()=>A,IconAiSlopSign:()=>S});module.exports=x($);var i=k(require("react"));var l=require("react-native-svg"),S=i.default.memo((o)=>{return i.default.createElement(f,{...o,maskId:"round-outlined-radius-3-stroke-1-IconAiSlopSign"},i.default.createElement(l.Path,{d:"M15.4104 5.32736C14.2173 4.13428 13.6208 3.53774 12.9333 3.31546C12.3287 3.11994 11.6776 3.12146 11.0739 3.3198C10.3875 3.5453 9.7938 4.14462 8.60631 5.34326L3.25003 10.7499C2.51705 11.4376 2.63876 12.5286 2.9727 13.4766C3.15838 14.0037 3.09827 14.5568 2.62783 15.1845C2.24764 15.6917 1.9777 16.2928 2.23787 16.8131C3.11751 18.5722 5.81287 16.1256 6.50037 18.1881C6.74051 18.9085 6.0215 20.3549 7.18788 20.9381C8.35426 21.5213 8.99225 19.5631 10.6254 19.5631C12.2585 19.5631 12.4424 20.4537 14.0629 20.2506C15.4975 20.0707 16.0699 19.0861 17.5004 18.8756C17.7989 18.8316 18.0935 18.8788 18.3771 18.9879C19.6051 19.4604 21.4988 19.2697 21.8035 17.9897C21.9122 17.5334 21.7309 17.0942 21.4162 16.6994C20.6673 15.7601 19.4019 14.568 20.5 13.4999C21.3676 12.6786 21.3864 11.3034 20.5417 10.4587L15.4104 5.32736Z",stroke:"currentColor",strokeLinejoin:"round"}),i.default.createElement(l.Path,{d:"M11.264 8.79745C11.2296 8.36771 11.5691 8 12.0002 8C12.4313 8 12.7708 8.36771 12.7364 8.79745L12.4321 12.6013C12.4141 12.8264 12.2261 13 12.0002 13C11.7743 13 11.5863 12.8264 11.5683 12.6013L11.264 8.79745Z",fill:"currentColor"}),i.default.createElement(l.Circle,{cx:"12",cy:"15",r:"0.75",fill:"currentColor"}))}),A=S;
2
+
3
+ //# debugId=A2DEC51F4A3455A764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAiSlopSign/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, Path } from \"react-native-svg\";\n\nexport const IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-3-stroke-1-IconAiSlopSign\"><Path d=\"M15.4104 5.32736C14.2173 4.13428 13.6208 3.53774 12.9333 3.31546C12.3287 3.11994 11.6776 3.12146 11.0739 3.3198C10.3875 3.5453 9.7938 4.14462 8.60631 5.34326L3.25003 10.7499C2.51705 11.4376 2.63876 12.5286 2.9727 13.4766C3.15838 14.0037 3.09827 14.5568 2.62783 15.1845C2.24764 15.6917 1.9777 16.2928 2.23787 16.8131C3.11751 18.5722 5.81287 16.1256 6.50037 18.1881C6.74051 18.9085 6.0215 20.3549 7.18788 20.9381C8.35426 21.5213 8.99225 19.5631 10.6254 19.5631C12.2585 19.5631 12.4424 20.4537 14.0629 20.2506C15.4975 20.0707 16.0699 19.0861 17.5004 18.8756C17.7989 18.8316 18.0935 18.8788 18.3771 18.9879C19.6051 19.4604 21.4988 19.2697 21.8035 17.9897C21.9122 17.5334 21.7309 17.0942 21.4162 16.6994C20.6673 15.7601 19.4019 14.568 20.5 13.4999C21.3676 12.6786 21.3864 11.3034 20.5417 10.4587L15.4104 5.32736Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Path d=\"M11.264 8.79745C11.2296 8.36771 11.5691 8 12.0002 8C12.4313 8 12.7708 8.36771 12.7364 8.79745L12.4321 12.6013C12.4141 12.8264 12.2261 13 12.0002 13C11.7743 13 11.5863 12.8264 11.5683 12.6013L11.264 8.79745Z\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"15\" r=\"0.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,0EChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAmE,UAAM,KAAK,CAAC,IAAU,CACpG,OAAO,wBAA2tC,EAA3tC,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,OAAD,CAAM,EAAE,0yBAA0yB,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACnuC,EAEc",
9
+ "debugId": "A2DEC51F4A3455A764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as d,Rect as C,G as f}from"react-native-svg";var i=({children:n,size:r=24,mode:l="masked",maskId:t,...p})=>{let m=l!=="raw"&&!!t;return o.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(d,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},n)),o.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Circle as u,Path as s}from"react-native-svg";var c=e.memo((n)=>{return e.createElement(i,{...n,maskId:"round-outlined-radius-3-stroke-1-IconAiSlopSign"},e.createElement(s,{d:"M15.4104 5.32736C14.2173 4.13428 13.6208 3.53774 12.9333 3.31546C12.3287 3.11994 11.6776 3.12146 11.0739 3.3198C10.3875 3.5453 9.7938 4.14462 8.60631 5.34326L3.25003 10.7499C2.51705 11.4376 2.63876 12.5286 2.9727 13.4766C3.15838 14.0037 3.09827 14.5568 2.62783 15.1845C2.24764 15.6917 1.9777 16.2928 2.23787 16.8131C3.11751 18.5722 5.81287 16.1256 6.50037 18.1881C6.74051 18.9085 6.0215 20.3549 7.18788 20.9381C8.35426 21.5213 8.99225 19.5631 10.6254 19.5631C12.2585 19.5631 12.4424 20.4537 14.0629 20.2506C15.4975 20.0707 16.0699 19.0861 17.5004 18.8756C17.7989 18.8316 18.0935 18.8788 18.3771 18.9879C19.6051 19.4604 21.4988 19.2697 21.8035 17.9897C21.9122 17.5334 21.7309 17.0942 21.4162 16.6994C20.6673 15.7601 19.4019 14.568 20.5 13.4999C21.3676 12.6786 21.3864 11.3034 20.5417 10.4587L15.4104 5.32736Z",stroke:"currentColor",strokeLinejoin:"round"}),e.createElement(s,{d:"M11.264 8.79745C11.2296 8.36771 11.5691 8 12.0002 8C12.4313 8 12.7708 8.36771 12.7364 8.79745L12.4321 12.6013C12.4141 12.8264 12.2261 13 12.0002 13C11.7743 13 11.5863 12.8264 11.5683 12.6013L11.264 8.79745Z",fill:"currentColor"}),e.createElement(u,{cx:"12",cy:"15",r:"0.75",fill:"currentColor"}))}),y=c;export{y as default,c as IconAiSlopSign};
2
+
3
+ //# debugId=E19C3C17E486E65B64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAiSlopSign/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, Path } from \"react-native-svg\";\n\nexport const IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-3-stroke-1-IconAiSlopSign\"><Path d=\"M15.4104 5.32736C14.2173 4.13428 13.6208 3.53774 12.9333 3.31546C12.3287 3.11994 11.6776 3.12146 11.0739 3.3198C10.3875 3.5453 9.7938 4.14462 8.60631 5.34326L3.25003 10.7499C2.51705 11.4376 2.63876 12.5286 2.9727 13.4766C3.15838 14.0037 3.09827 14.5568 2.62783 15.1845C2.24764 15.6917 1.9777 16.2928 2.23787 16.8131C3.11751 18.5722 5.81287 16.1256 6.50037 18.1881C6.74051 18.9085 6.0215 20.3549 7.18788 20.9381C8.35426 21.5213 8.99225 19.5631 10.6254 19.5631C12.2585 19.5631 12.4424 20.4537 14.0629 20.2506C15.4975 20.0707 16.0699 19.0861 17.5004 18.8756C17.7989 18.8316 18.0935 18.8788 18.3771 18.9879C19.6051 19.4604 21.4988 19.2697 21.8035 17.9897C21.9122 17.5334 21.7309 17.0942 21.4162 16.6994C20.6673 15.7601 19.4019 14.568 20.5 13.4999C21.3676 12.6786 21.3864 11.3034 20.5417 10.4587L15.4104 5.32736Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Path d=\"M11.264 8.79745C11.2296 8.36771 11.5691 8 12.0002 8C12.4313 8 12.7708 8.36771 12.7364 8.79745L12.4321 12.6013C12.4141 12.8264 12.2261 13 12.0002 13C11.7743 13 11.5863 12.8264 11.5683 12.6013L11.264 8.79745Z\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"15\" r=\"0.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,UAAQ,yBAEV,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA2tC,EAA3tC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,0yBAA0yB,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACnuC,EAEc",
9
+ "debugId": "E19C3C17E486E65B64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -255,6 +255,7 @@ Below is a complete list of available icons:
255
255
  - IconGoblin
256
256
  - IconAiBotHeadLooking
257
257
  - IconAiBotHead
258
+ - IconAiSlopSign
258
259
 
259
260
  ### Accessibility
260
261