@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.208 → 1.1.209
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/IconArrowRotateSparkle/index.d.ts +4 -0
- package/IconArrowRotateSparkle/index.js +2 -0
- package/IconArrowRotateSparkle/index.js.map +1 -0
- package/IconArrowRotateSparkle/index.mjs +2 -0
- package/IconArrowRotateSparkle/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/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var H=Object.create;var p=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!B.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=i(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?H(V(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconArrowRotateSparkle:()=>c,default:()=>P});module.exports=x(g);var n=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),L=({children:r,size:o=24,...t})=>f.default.createElement(s.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"),c=r=>n.default.createElement(L,{...r},n.default.createElement(C.Path,{d:"M4.12402 10.5029L4.06152 10.999C4.02067 11.3266 4 11.6609 4 12C4 16.4183 7.58172 20 12 20C14.5367 20 17.0049 18.8216 18.5205 17H15.0117V16H20.0117V21H19.0117V17.9551C17.2896 19.828 14.6774 21 12 21C7.02944 21 3 16.9706 3 12C3 11.6196 3.02341 11.2444 3.06934 10.876L3.13184 10.3799L4.12402 10.5029Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M18.4004 4L19.4004 6.59961L22 7.59961V8.40039L19.4004 9.40039L18.4004 12H17.5996L16.5996 9.40039L14 8.40039V7.59961L16.5996 6.59961L17.5996 4H18.4004Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M5 6.03223C6.72227 4.16669 9.3287 3 12 3H12.5V4H12C9.46328 4 6.99513 5.17842 5.47949 7H9V8H4V3H5V6.03223Z",fill:"currentColor"})),P=c;0&&(module.exports={IconArrowRotateSparkle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRotateSparkle/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 IconArrowRotateSparkle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.12402 10.5029L4.06152 10.999C4.02067 11.3266 4 11.6609 4 12C4 16.4183 7.58172 20 12 20C14.5367 20 17.0049 18.8216 18.5205 17H15.0117V16H20.0117V21H19.0117V17.9551C17.2896 19.828 14.6774 21 12 21C7.02944 21 3 16.9706 3 12C3 11.6196 3.02341 11.2444 3.06934 10.876L3.13184 10.3799L4.12402 10.5029Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.4004 4L19.4004 6.59961L22 7.59961V8.40039L19.4004 9.40039L18.4004 12H17.5996L16.5996 9.40039L14 8.40039V7.59961L16.5996 6.59961L17.5996 4H18.4004Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 6.03223C6.72227 4.16669 9.3287 3 12 3H12.5V4H12C9.46328 4 6.99513 5.17842 5.47949 7H9V8H4V3H5V6.03223Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRotateSparkle;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArrowRotateSparkle_exports","__export","IconArrowRotateSparkle","IconArrowRotateSparkle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowRotateSparkle","props","React","CentralIconBase","IconArrowRotateSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as l}from"react-native-svg";var n=({children:t,size:r=24,...p})=>C.createElement(l,{...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 a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M4.12402 10.5029L4.06152 10.999C4.02067 11.3266 4 11.6609 4 12C4 16.4183 7.58172 20 12 20C14.5367 20 17.0049 18.8216 18.5205 17H15.0117V16H20.0117V21H19.0117V17.9551C17.2896 19.828 14.6774 21 12 21C7.02944 21 3 16.9706 3 12C3 11.6196 3.02341 11.2444 3.06934 10.876L3.13184 10.3799L4.12402 10.5029Z",fill:"currentColor"}),o.createElement(e,{d:"M18.4004 4L19.4004 6.59961L22 7.59961V8.40039L19.4004 9.40039L18.4004 12H17.5996L16.5996 9.40039L14 8.40039V7.59961L16.5996 6.59961L17.5996 4H18.4004Z",fill:"currentColor"}),o.createElement(e,{d:"M5 6.03223C6.72227 4.16669 9.3287 3 12 3H12.5V4H12C9.46328 4 6.99513 5.17842 5.47949 7H9V8H4V3H5V6.03223Z",fill:"currentColor"})),B=a;export{a as IconArrowRotateSparkle,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRotateSparkle/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 IconArrowRotateSparkle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.12402 10.5029L4.06152 10.999C4.02067 11.3266 4 11.6609 4 12C4 16.4183 7.58172 20 12 20C14.5367 20 17.0049 18.8216 18.5205 17H15.0117V16H20.0117V21H19.0117V17.9551C17.2896 19.828 14.6774 21 12 21C7.02944 21 3 16.9706 3 12C3 11.6196 3.02341 11.2444 3.06934 10.876L3.13184 10.3799L4.12402 10.5029Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.4004 4L19.4004 6.59961L22 7.59961V8.40039L19.4004 9.40039L18.4004 12H17.5996L16.5996 9.40039L14 8.40039V7.59961L16.5996 6.59961L17.5996 4H18.4004Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 6.03223C6.72227 4.16669 9.3287 3 12 3H12.5V4H12C9.46328 4 6.99513 5.17842 5.47949 7H9V8H4V3H5V6.03223Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRotateSparkle;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4GACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowRotateSparkle","props","React","CentralIconBase","IconArrowRotateSparkle_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -1834,6 +1834,20 @@
|
|
|
1834
1834
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
1835
1835
|
"componentName": "IconArrowRotateRightLeft"
|
|
1836
1836
|
},
|
|
1837
|
+
{
|
|
1838
|
+
"category": "AI & Magic",
|
|
1839
|
+
"svg": "<path d=\"M4.12402 10.5029L4.06152 10.999C4.02067 11.3266 4 11.6609 4 12C4 16.4183 7.58172 20 12 20C14.5367 20 17.0049 18.8216 18.5205 17H15.0117V16H20.0117V21H19.0117V17.9551C17.2896 19.828 14.6774 21 12 21C7.02944 21 3 16.9706 3 12C3 11.6196 3.02341 11.2444 3.06934 10.876L3.13184 10.3799L4.12402 10.5029Z\" fill=\"currentColor\"/><path d=\"M18.4004 4L19.4004 6.59961L22 7.59961V8.40039L19.4004 9.40039L18.4004 12H17.5996L16.5996 9.40039L14 8.40039V7.59961L16.5996 6.59961L17.5996 4H18.4004Z\" fill=\"currentColor\"/><path d=\"M5 6.03223C6.72227 4.16669 9.3287 3 12 3H12.5V4H12C9.46328 4 6.99513 5.17842 5.47949 7H9V8H4V3H5V6.03223Z\" fill=\"currentColor\"/>",
|
|
1840
|
+
"iconName": "arrow-rotate-sparkle, repeat, refresh, generate",
|
|
1841
|
+
"variant": {
|
|
1842
|
+
"join": "square",
|
|
1843
|
+
"filled": "on",
|
|
1844
|
+
"radius": "0",
|
|
1845
|
+
"stroke": "1"
|
|
1846
|
+
},
|
|
1847
|
+
"createdAt": "2026-04-23T15:02:22.921188+00:00",
|
|
1848
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
1849
|
+
"componentName": "IconArrowRotateSparkle"
|
|
1850
|
+
},
|
|
1837
1851
|
{
|
|
1838
1852
|
"category": "Interface General",
|
|
1839
1853
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 7.00008V19.0001H20V20.0001H2V7.00008H3Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3.29297L21.2071 7.50008L17 11.7072L16.2929 11.0001L19.2929 8.00008H12.5C10.0147 8.00008 8 10.0148 8 12.5001V14.0001H7V12.5001C7 9.46251 9.46243 7.00008 12.5 7.00008H19.2929L16.2929 4.00008L17 3.29297Z\" 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.209",
|
|
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,15 +11,16 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1970,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 82,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiSlop",
|
|
20
20
|
"IconAiTokens",
|
|
21
21
|
"IconAiTranslate",
|
|
22
22
|
"IconAppleIntelligenceIcon",
|
|
23
|
+
"IconArrowRotateSparkle",
|
|
23
24
|
"IconAutoCrop",
|
|
24
25
|
"IconBag2Sparkle",
|
|
25
26
|
"IconBoxSparkle",
|
|
@@ -2302,6 +2303,7 @@
|
|
|
2302
2303
|
"IconArrowRotateCounterClockwise": "arrow-rotate-counter-clockwise, rotate-left",
|
|
2303
2304
|
"IconArrowRotateLeftRight": "arrow-rotate-left-right, repeat, refresh",
|
|
2304
2305
|
"IconArrowRotateRightLeft": "arrow-rotate-right-left, repeat, refresh, routines",
|
|
2306
|
+
"IconArrowRotateSparkle": "arrow-rotate-sparkle, repeat, refresh, generate",
|
|
2305
2307
|
"IconArrowRounded": "arrow-rounded, share, arrow, login",
|
|
2306
2308
|
"IconArrowsAllSides": "arrows-all-sides, move, focus",
|
|
2307
2309
|
"IconArrowsAllSides2": "arrows-all-sides-2, scan, move, focus",
|
package/index.d.ts
CHANGED
|
@@ -131,6 +131,7 @@ export { IconArrowRotateClockwise, default as IconArrowRotateClockwiseDefault, }
|
|
|
131
131
|
export { IconArrowRotateCounterClockwise, default as IconArrowRotateCounterClockwiseDefault, } from "./IconArrowRotateCounterClockwise";
|
|
132
132
|
export { IconArrowRotateLeftRight, default as IconArrowRotateLeftRightDefault, } from "./IconArrowRotateLeftRight";
|
|
133
133
|
export { IconArrowRotateRightLeft, default as IconArrowRotateRightLeftDefault, } from "./IconArrowRotateRightLeft";
|
|
134
|
+
export { IconArrowRotateSparkle, default as IconArrowRotateSparkleDefault, } from "./IconArrowRotateSparkle";
|
|
134
135
|
export { IconArrowRounded, default as IconArrowRoundedDefault, } from "./IconArrowRounded";
|
|
135
136
|
export { IconArrowShareLeft, default as IconArrowShareLeftDefault, } from "./IconArrowShareLeft";
|
|
136
137
|
export { IconArrowShareRight, default as IconArrowShareRightDefault, } from "./IconArrowShareRight";
|