@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.192 → 1.1.193
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/IconScriptAi/index.d.ts +4 -0
- package/IconScriptAi/index.js +2 -0
- package/IconScriptAi/index.js.map +1 -0
- package/IconScriptAi/index.mjs +2 -0
- package/IconScriptAi/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -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 +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var l=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},f=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!H.call(r,e)&&e!==t&&l(r,e,{get:()=>o[e],enumerable:!(p=V(o,e))||p.enumerable});return r};var m=(r,o,t)=>(t=r!=null?c(B(r)):{},f(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>f(l({},"__esModule",{value:!0}),r);var d={};I(d,{IconScriptAi:()=>L,default:()=>P});module.exports=x(d);var n=m(require("react"));var a=m(require("react")),i=require("react-native-svg"),s=({children:r,size:o=24,...t})=>a.default.createElement(i.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"),L=r=>n.default.createElement(s,{...r},n.default.createElement(C.Path,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V12.25H6.25879L7.36621 9.36621L10.25 8.25879V5.74121L7.36621 4.63281L6.8291 3.23633C7.18879 3.08375 7.58468 3 8 3H17.5039Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M5.40039 3L6.40039 5.59961L9 6.59961V7.40039L6.40039 8.40039L5.40039 11H4.59961L3.59961 8.40039L1 7.40039V6.59961L3.59961 5.59961L4.59961 3H5.40039Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"})),P=L;0&&(module.exports={IconScriptAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScriptAi/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 IconScriptAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V12.25H6.25879L7.36621 9.36621L10.25 8.25879V5.74121L7.36621 4.63281L6.8291 3.23633C7.18879 3.08375 7.58468 3 8 3H17.5039Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.40039 3L6.40039 5.59961L9 6.59961V7.40039L6.40039 8.40039L5.40039 11H4.59961L3.59961 8.40039L1 7.40039V6.59961L3.59961 5.59961L4.59961 3H5.40039Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScriptAi;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconScriptAi_exports","__export","IconScriptAi","IconScriptAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScriptAi","props","React","CentralIconBase","IconScriptAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var e=({children:n,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as t}from"react-native-svg";var f=n=>o.createElement(e,{...n},o.createElement(t,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),o.createElement(t,{d:"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V12.25H6.25879L7.36621 9.36621L10.25 8.25879V5.74121L7.36621 4.63281L6.8291 3.23633C7.18879 3.08375 7.58468 3 8 3H17.5039Z",fill:"currentColor"}),o.createElement(t,{d:"M5.40039 3L6.40039 5.59961L9 6.59961V7.40039L6.40039 8.40039L5.40039 11H4.59961L3.59961 8.40039L1 7.40039V6.59961L3.59961 5.59961L4.59961 3H5.40039Z",fill:"currentColor"}),o.createElement(t,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"})),H=f;export{f as IconScriptAi,H as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScriptAi/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 IconScriptAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V12.25H6.25879L7.36621 9.36621L10.25 8.25879V5.74121L7.36621 4.63281L6.8291 3.23633C7.18879 3.08375 7.58468 3 8 3H17.5039Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.40039 3L6.40039 5.59961L9 6.59961V7.40039L6.40039 8.40039L5.40039 11H4.59961L3.59961 8.40039L1 7.40039V6.59961L3.59961 5.59961L4.59961 3H5.40039Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScriptAi;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4EACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScriptAi","props","React","CentralIconBase","IconScriptAi_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -20958,6 +20958,20 @@
|
|
|
20958
20958
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
20959
20959
|
"componentName": "IconScript2"
|
|
20960
20960
|
},
|
|
20961
|
+
{
|
|
20962
|
+
"category": "AI & Magic",
|
|
20963
|
+
"svg": "<path d=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" fill=\"currentColor\"/><path d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V12.25H6.25879L7.36621 9.36621L10.25 8.25879V5.74121L7.36621 4.63281L6.8291 3.23633C7.18879 3.08375 7.58468 3 8 3H17.5039Z\" fill=\"currentColor\"/><path d=\"M5.40039 3L6.40039 5.59961L9 6.59961V7.40039L6.40039 8.40039L5.40039 11H4.59961L3.59961 8.40039L1 7.40039V6.59961L3.59961 5.59961L4.59961 3H5.40039Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/>",
|
|
20964
|
+
"iconName": "script-ai, paper, page, contract, file, document, skills",
|
|
20965
|
+
"variant": {
|
|
20966
|
+
"join": "square",
|
|
20967
|
+
"filled": "on",
|
|
20968
|
+
"radius": "0",
|
|
20969
|
+
"stroke": "1"
|
|
20970
|
+
},
|
|
20971
|
+
"createdAt": "2026-04-16T06:02:31.853131+00:00",
|
|
20972
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
20973
|
+
"componentName": "IconScriptAi"
|
|
20974
|
+
},
|
|
20961
20975
|
{
|
|
20962
20976
|
"category": "Folders & Files",
|
|
20963
20977
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 2V22H20V10.8585L18 7.60848V2H4ZM10 6V10H9V6H10ZM13 6H12V10H13V6Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.193",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1/IconHome';",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1941,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 77,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiTokens",
|
|
20
20
|
"IconAiTranslate",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"IconReceiptionBellSparkle",
|
|
68
68
|
"IconRobot",
|
|
69
69
|
"IconScanTextSparkle",
|
|
70
|
+
"IconScriptAi",
|
|
70
71
|
"IconSearchIntelligence",
|
|
71
72
|
"IconSearchlinesSparkle",
|
|
72
73
|
"IconSeparateVideoVoice",
|
|
@@ -3639,6 +3640,7 @@
|
|
|
3639
3640
|
"IconScreenCapture": "screen-capture, recording",
|
|
3640
3641
|
"IconScript": "script, paper, page, contract, file, document, skills",
|
|
3641
3642
|
"IconScript2": "script-2, paper, page, contract, file, document, skills",
|
|
3643
|
+
"IconScriptAi": "script-ai, paper, page, contract, file, document, skills",
|
|
3642
3644
|
"IconSdCard": "sd-card, memory-stick",
|
|
3643
3645
|
"IconSearchIntelligence": "search-intelligence, search-ai",
|
|
3644
3646
|
"IconSearchlinesSparkle": "search lines-sparkle, magnifier, document, list, page, file",
|
package/index.d.ts
CHANGED
|
@@ -1495,6 +1495,7 @@ export { IconScratchCard, default as IconScratchCardDefault, } from "./IconScrat
|
|
|
1495
1495
|
export { IconScreenCapture, default as IconScreenCaptureDefault, } from "./IconScreenCapture";
|
|
1496
1496
|
export { IconScript, default as IconScriptDefault } from "./IconScript";
|
|
1497
1497
|
export { IconScript2, default as IconScript2Default } from "./IconScript2";
|
|
1498
|
+
export { IconScriptAi, default as IconScriptAiDefault } from "./IconScriptAi";
|
|
1498
1499
|
export { IconSdCard, default as IconSdCardDefault } from "./IconSdCard";
|
|
1499
1500
|
export { IconSearchIntelligence, default as IconSearchIntelligenceDefault, } from "./IconSearchIntelligence";
|
|
1500
1501
|
export { IconSearchMenu, default as IconSearchMenuDefault, } from "./IconSearchMenu";
|