@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.62 → 1.1.63
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/IconHdr/index.d.ts +4 -0
- package/IconHdr/index.js +2 -0
- package/IconHdr/index.js.map +1 -0
- package/IconHdr/index.mjs +2 -0
- package/IconHdr/index.mjs.map +1 -0
- package/IconIncrease/index.d.ts +4 -0
- package/IconIncrease/index.js +2 -0
- package/IconIncrease/index.js.map +1 -0
- package/IconIncrease/index.mjs +2 -0
- package/IconIncrease/index.mjs.map +1 -0
- package/IconRotate360Left/index.d.ts +4 -0
- package/IconRotate360Left/index.js +2 -0
- package/IconRotate360Left/index.js.map +1 -0
- package/IconRotate360Left/index.mjs +2 -0
- package/IconRotate360Left/index.mjs.map +1 -0
- package/IconRotate360Right/index.d.ts +4 -0
- package/IconRotate360Right/index.js +2 -0
- package/IconRotate360Right/index.js.map +1 -0
- package/IconRotate360Right/index.mjs +2 -0
- package/IconRotate360Right/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +57 -1
- package/icons/index.d.ts +4 -0
- package/icons-index.json +13 -5
- package/index.d.ts +4 -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 +29 -1
package/IconHdr/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of h(o))!x.call(r,C)&&C!==t&&p(r,C,{get:()=>o[C],enumerable:!(s=f(o,C))||s.enumerable});return r};var c=(r,o,t)=>(t=r!=null?u(k(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>l(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconHdr:()=>d,default:()=>M});module.exports=I(P);var e=c(require("react"));var m=c(require("react")),a=require("react-native-svg"),i=({children:r,size:o=24,...t})=>m.default.createElement(a.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 n=require("react-native-svg"),d=r=>e.default.createElement(i,{...r},e.default.createElement(n.Circle,{cx:"11",cy:"12",r:"6",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M10.8029 9C10.2923 9.88261 10 10.9074 10 12.0004C10 13.2271 10.3682 14.3679 11 15.3182",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1",stroke:"currentColor",strokeWidth:"2"})),M=d;0&&(module.exports={IconHdr});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHdr/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 IconHdr: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"11\" cy=\"12\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.8029 9C10.2923 9.88261 10 10.9074 10 12.0004C10 13.2271 10.3682 14.3679 11 15.3182\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHdr;\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,aAAAE,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,EAAqCC,GAE9C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,sKACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconHdr_exports","__export","IconHdr","IconHdr_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHdr","props","React","CentralIconBase","IconHdr_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as l,Path as e}from"react-native-svg";var c=t=>o.createElement(n,{...t},o.createElement(l,{cx:"11",cy:"12",r:"6",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M10.8029 9C10.2923 9.88261 10 10.9074 10 12.0004C10 13.2271 10.3682 14.3679 11 15.3182",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1",stroke:"currentColor",strokeWidth:"2"})),B=c;export{c as IconHdr,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHdr/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 IconHdr: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"11\" cy=\"12\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.8029 9C10.2923 9.88261 10 10.9074 10 12.0004C10 13.2271 10.3682 14.3679 11 15.3182\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHdr;\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,EAAqCC,GAE9CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,sKACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconHdr","props","React","CentralIconBase","IconHdr_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of a(o))!I.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(C=h(o,s))||C.enumerable});return r};var d=(r,o,t)=>(t=r!=null?c(f(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconIncrease:()=>u,default:()=>M});module.exports=x(P);var e=d(require("react"));var k=d(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...t})=>k.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 n=require("react-native-svg"),u=r=>e.default.createElement(m,{...r},e.default.createElement(n.Path,{d:"M1.5 8.5L5 5L8.5 8.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M15.5 15.5L19 19L15.5 22.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M5 5V16",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M19 19L8 19",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M10 5L14 5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M19 10V14",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M16 5H19V8",stroke:"currentColor",strokeWidth:"2"})),M=u;0&&(module.exports={IconIncrease});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIncrease/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 IconIncrease: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1.5 8.5L5 5L8.5 8.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M15.5 15.5L19 19L15.5 22.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M5 5V16\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 19L8 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M10 5L14 5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 10V14\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M16 5H19V8\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconIncrease;\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,QAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,IAAI,EACrE,EAAAA,QAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,EAC3D,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,EAC1D,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,CAC7D,EAIGE,EAAQJ","names":["IconIncrease_exports","__export","IconIncrease","IconIncrease_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconIncrease","props","React","CentralIconBase","IconIncrease_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:t=24,...s})=>p.createElement(C,{...s,width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},e);import{Path as o}from"react-native-svg";var l=e=>r.createElement(n,{...e},r.createElement(o,{d:"M1.5 8.5L5 5L8.5 8.5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M15.5 15.5L19 19L15.5 22.5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M5 5V16",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M19 19L8 19",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M10 5L14 5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M19 10V14",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M16 5H19V8",stroke:"currentColor",strokeWidth:"2"})),I=l;export{l as IconIncrease,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIncrease/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 IconIncrease: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1.5 8.5L5 5L8.5 8.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M15.5 15.5L19 19L15.5 22.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M5 5V16\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 19L8 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M10 5L14 5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 10V14\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M16 5H19V8\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconIncrease;\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,CAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,IAAI,EACrEG,EAAA,cAACH,EAAA,CACC,EAAE,6BACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,EAC5DG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,EAC3DG,EAAA,cAACH,EAAA,CAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,EAC1DG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,CAC7D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconIncrease","props","React","CentralIconBase","IconIncrease_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconRotate360Left:()=>i,default:()=>h});module.exports=g(v);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.default.createElement(c.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"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M14 13L11 16L14 19",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 16C17.5228 16 22 13.7614 22 11C22 8.23858 17.5228 6 12 6C6.47715 6 2 8.23858 2 11C2 12.8507 4.01099 14.4666 7 15.3311",stroke:"currentColor",strokeWidth:"2"})),h=i;0&&(module.exports={IconRotate360Left});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRotate360Left/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 IconRotate360Left: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M14 13L11 16L14 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 16C17.5228 16 22 13.7614 22 11C22 8.23858 17.5228 6 12 6C6.47715 6 2 8.23858 2 11C2 12.8507 4.01099 14.4666 7 15.3311\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRotate360Left;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnE,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconRotate360Left_exports","__export","IconRotate360Left","IconRotate360Left_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRotate360Left","props","React","CentralIconBase","IconRotate360Left_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M14 13L11 16L14 19",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M12 16C17.5228 16 22 13.7614 22 11C22 8.23858 17.5228 6 12 6C6.47715 6 2 8.23858 2 11C2 12.8507 4.01099 14.4666 7 15.3311",stroke:"currentColor",strokeWidth:"2"})),P=a;export{a as IconRotate360Left,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRotate360Left/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 IconRotate360Left: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M14 13L11 16L14 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 16C17.5228 16 22 13.7614 22 11C22 8.23858 17.5228 6 12 6C6.47715 6 2 8.23858 2 11C2 12.8507 4.01099 14.4666 7 15.3311\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRotate360Left;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnEG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRotate360Left","props","React","CentralIconBase","IconRotate360Left_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!h.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(g(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var v={};x(v,{IconRotate360Right:()=>i,default:()=>d});module.exports=P(v);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.default.createElement(c.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"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M10 13L13 16L10 19",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 16C6.47715 16 2 13.7614 2 11C2 8.23858 6.47715 6 12 6C17.5228 6 22 8.23858 22 11C22 12.8507 19.989 14.4666 17 15.3311",stroke:"currentColor",strokeWidth:"2"})),d=i;0&&(module.exports={IconRotate360Right});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRotate360Right/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 IconRotate360Right: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M10 13L13 16L10 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 16C6.47715 16 2 13.7614 2 11C2 8.23858 6.47715 6 12 6C17.5228 6 22 8.23858 22 11C22 12.8507 19.989 14.4666 17 15.3311\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRotate360Right;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnE,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconRotate360Right_exports","__export","IconRotate360Right","IconRotate360Right_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRotate360Right","props","React","CentralIconBase","IconRotate360Right_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M10 13L13 16L10 19",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M12 16C6.47715 16 2 13.7614 2 11C2 8.23858 6.47715 6 12 6C17.5228 6 22 8.23858 22 11C22 12.8507 19.989 14.4666 17 15.3311",stroke:"currentColor",strokeWidth:"2"})),h=a;export{a as IconRotate360Right,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRotate360Right/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 IconRotate360Right: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M10 13L13 16L10 19\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 16C6.47715 16 2 13.7614 2 11C2 8.23858 6.47715 6 12 6C17.5228 6 22 8.23858 22 11C22 12.8507 19.989 14.4666 17 15.3311\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRotate360Right;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnEG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRotate360Right","props","React","CentralIconBase","IconRotate360Right_default"]}
|
package/README.md
CHANGED
|
@@ -324,11 +324,14 @@ Below is a complete list of available icons:
|
|
|
324
324
|
- IconExpand45
|
|
325
325
|
- IconExpandSimple
|
|
326
326
|
- IconExpandSimple2
|
|
327
|
+
- IconIncrease
|
|
327
328
|
- IconJump
|
|
328
329
|
- IconMinimize315
|
|
329
330
|
- IconMinimize45
|
|
330
331
|
- IconOngoing
|
|
331
332
|
- IconRandom
|
|
333
|
+
- IconRotate360Left
|
|
334
|
+
- IconRotate360Right
|
|
332
335
|
- IconShareArrowDown
|
|
333
336
|
- IconSquareArrowBottomRight
|
|
334
337
|
- IconSquareArrowCenter
|
|
@@ -624,6 +627,7 @@ Below is a complete list of available icons:
|
|
|
624
627
|
- IconFeather
|
|
625
628
|
- IconGlass
|
|
626
629
|
- IconGooey
|
|
630
|
+
- IconHdr
|
|
627
631
|
- IconHighlight
|
|
628
632
|
- IconInputForm
|
|
629
633
|
- IconKeyframe
|
package/filtered-icons.json
CHANGED
|
@@ -11382,6 +11382,20 @@
|
|
|
11382
11382
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
11383
11383
|
"componentName": "IconHd"
|
|
11384
11384
|
},
|
|
11385
|
+
{
|
|
11386
|
+
"category": "Edit",
|
|
11387
|
+
"svg": "<circle cx=\"11\" cy=\"12\" r=\"6\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10.8029 9C10.2923 9.88261 10 10.9074 10 12.0004C10 13.2271 10.3682 14.3679 11 15.3182\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
11388
|
+
"iconName": "hdr, lighting, brightness",
|
|
11389
|
+
"variant": {
|
|
11390
|
+
"join": "square",
|
|
11391
|
+
"filled": "off",
|
|
11392
|
+
"radius": "0",
|
|
11393
|
+
"stroke": "2"
|
|
11394
|
+
},
|
|
11395
|
+
"createdAt": "2025-12-11T12:02:03.645203+00:00",
|
|
11396
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
11397
|
+
"componentName": "IconHdr"
|
|
11398
|
+
},
|
|
11385
11399
|
{
|
|
11386
11400
|
"category": "People",
|
|
11387
11401
|
"svg": "<path d=\"M18 18H14V21H7C7 18.4758 7.1347 16.4146 5.48913 14.3168C4.55625 13.1275 4 11.6287 4 10C4 6.13401 7.13401 3 11 3C13.8499 3 16.4738 4.36784 17.5555 7.13279C18.3134 9.07024 19.3382 10.2573 20.5 12L18 13.5V18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -12040,6 +12054,20 @@
|
|
|
12040
12054
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12041
12055
|
"componentName": "IconInboxEmpty"
|
|
12042
12056
|
},
|
|
12057
|
+
{
|
|
12058
|
+
"category": "Arrows",
|
|
12059
|
+
"svg": "<path d=\"M1.5 8.5L5 5L8.5 8.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M15.5 15.5L19 19L15.5 22.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M5 5V16\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19 19L8 19\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10 5L14 5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19 10V14\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M16 5H19V8\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
12060
|
+
"iconName": "increase, scale, show-more, change-position",
|
|
12061
|
+
"variant": {
|
|
12062
|
+
"join": "square",
|
|
12063
|
+
"filled": "off",
|
|
12064
|
+
"radius": "0",
|
|
12065
|
+
"stroke": "2"
|
|
12066
|
+
},
|
|
12067
|
+
"createdAt": "2025-12-11T12:02:03.645203+00:00",
|
|
12068
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12069
|
+
"componentName": "IconIncrease"
|
|
12070
|
+
},
|
|
12043
12071
|
{
|
|
12044
12072
|
"category": "Things",
|
|
12045
12073
|
"svg": "<path d=\"M12 12L15.2218 15.182C17.0012 16.9393 19.8861 16.9393 21.6655 15.182C23.4448 13.4246 23.4448 10.5754 21.6655 8.81802C19.8861 7.06066 17.0012 7.06066 15.2218 8.81802L12 12ZM12 12L8.77817 8.81802C6.99881 7.06066 4.11389 7.06066 2.33452 8.81802C0.555159 10.5754 0.555159 13.4246 2.33452 15.182C4.11389 16.9393 6.99881 16.9393 8.77817 15.182L12 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -17360,6 +17388,34 @@
|
|
|
17360
17388
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
17361
17389
|
"componentName": "IconRotate"
|
|
17362
17390
|
},
|
|
17391
|
+
{
|
|
17392
|
+
"category": "Arrows",
|
|
17393
|
+
"svg": "<path d=\"M14 13L11 16L14 19\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12 16C17.5228 16 22 13.7614 22 11C22 8.23858 17.5228 6 12 6C6.47715 6 2 8.23858 2 11C2 12.8507 4.01099 14.4666 7 15.3311\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
17394
|
+
"iconName": "rotate-360-left",
|
|
17395
|
+
"variant": {
|
|
17396
|
+
"join": "square",
|
|
17397
|
+
"filled": "off",
|
|
17398
|
+
"radius": "0",
|
|
17399
|
+
"stroke": "2"
|
|
17400
|
+
},
|
|
17401
|
+
"createdAt": "2025-12-11T12:02:03.645203+00:00",
|
|
17402
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
17403
|
+
"componentName": "IconRotate360Left"
|
|
17404
|
+
},
|
|
17405
|
+
{
|
|
17406
|
+
"category": "Arrows",
|
|
17407
|
+
"svg": "<path d=\"M10 13L13 16L10 19\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12 16C6.47715 16 2 13.7614 2 11C2 8.23858 6.47715 6 12 6C17.5228 6 22 8.23858 22 11C22 12.8507 19.989 14.4666 17 15.3311\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
17408
|
+
"iconName": "rotate-360-right",
|
|
17409
|
+
"variant": {
|
|
17410
|
+
"join": "square",
|
|
17411
|
+
"filled": "off",
|
|
17412
|
+
"radius": "0",
|
|
17413
|
+
"stroke": "2"
|
|
17414
|
+
},
|
|
17415
|
+
"createdAt": "2025-12-11T12:02:03.645203+00:00",
|
|
17416
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
17417
|
+
"componentName": "IconRotate360Right"
|
|
17418
|
+
},
|
|
17363
17419
|
{
|
|
17364
17420
|
"category": "Gaming",
|
|
17365
17421
|
"svg": "<path d=\"M12 3.5V4.5M12 20.5V19.5M3.50001 12H4.50001M20.5 12H19.5M7.74999 4.63879L8.24999 5.50481M16.25 19.3612L15.75 18.4952M4.63878 16.25L5.50481 15.75M19.3612 7.75L18.4952 8.25M4.63879 7.75002L5.50481 8.25002M19.3612 16.25L18.4952 15.75M7.75001 19.3612L8.25001 18.4952M16.25 4.63879L15.75 5.50482M10.5858 10.5858L10.25 10.25M13.4142 10.5858L13.75 10.25M13.4142 13.4142L13.75 13.75M10.5858 13.4142L10.25 13.75M8.875 9H9.125M15.125 9H14.875M14.875 15H15.125M8.875 15H9.125M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM9.5 15C9.5 15.2761 9.27614 15.5 9 15.5C8.72386 15.5 8.5 15.2761 8.5 15C8.5 14.7239 8.72386 14.5 9 14.5C9.27614 14.5 9.5 14.7239 9.5 15ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15ZM13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5C12.8284 10.5 13.5 11.1716 13.5 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -19561,7 +19617,7 @@
|
|
|
19561
19617
|
{
|
|
19562
19618
|
"category": "Interface General",
|
|
19563
19619
|
"svg": "<path d=\"M9 16.0002L5 20.0002M7 11.0002L3 15.0002M16 16.0002L12 20.0002M15.5 2L17.475 5.2817L21.2063 6.1459L18.6955 9.0383L19.0267 12.8541L15.5 11.36L11.9733 12.8541L12.3044 9.0383L9.79366 6.1459L13.525 5.2817L15.5 2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
19564
|
-
"iconName": "star-lines, features, favorite, award, to the moon",
|
|
19620
|
+
"iconName": "star-lines, features, favorite, award, to the moon, rising",
|
|
19565
19621
|
"variant": {
|
|
19566
19622
|
"join": "square",
|
|
19567
19623
|
"filled": "off",
|
package/icons/index.d.ts
CHANGED
|
@@ -812,6 +812,7 @@ export type CentralIconName =
|
|
|
812
812
|
| "IconHatBunny"
|
|
813
813
|
| "IconHatSparkle"
|
|
814
814
|
| "IconHd"
|
|
815
|
+
| "IconHdr"
|
|
815
816
|
| "IconHead"
|
|
816
817
|
| "IconHeadline"
|
|
817
818
|
| "IconHeadphones"
|
|
@@ -859,6 +860,7 @@ export type CentralIconName =
|
|
|
859
860
|
| "IconImport2"
|
|
860
861
|
| "IconInboxChecked"
|
|
861
862
|
| "IconInboxEmpty"
|
|
863
|
+
| "IconIncrease"
|
|
862
864
|
| "IconInfinity"
|
|
863
865
|
| "IconInitiatives"
|
|
864
866
|
| "IconInjection"
|
|
@@ -1239,6 +1241,8 @@ export type CentralIconName =
|
|
|
1239
1241
|
| "IconRoller"
|
|
1240
1242
|
| "IconRose"
|
|
1241
1243
|
| "IconRotate"
|
|
1244
|
+
| "IconRotate360Left"
|
|
1245
|
+
| "IconRotate360Right"
|
|
1242
1246
|
| "IconRoulette1"
|
|
1243
1247
|
| "IconRoulette2"
|
|
1244
1248
|
| "IconRssFeed"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.63",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-2/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": 1634,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
]
|
|
97
97
|
},
|
|
98
98
|
"Arrows": {
|
|
99
|
-
"count":
|
|
99
|
+
"count": 119,
|
|
100
100
|
"icons": [
|
|
101
101
|
"IconArrow",
|
|
102
102
|
"IconArrowBottomTop",
|
|
@@ -198,11 +198,14 @@
|
|
|
198
198
|
"IconExpand45",
|
|
199
199
|
"IconExpandSimple",
|
|
200
200
|
"IconExpandSimple2",
|
|
201
|
+
"IconIncrease",
|
|
201
202
|
"IconJump",
|
|
202
203
|
"IconMinimize315",
|
|
203
204
|
"IconMinimize45",
|
|
204
205
|
"IconOngoing",
|
|
205
206
|
"IconRandom",
|
|
207
|
+
"IconRotate360Left",
|
|
208
|
+
"IconRotate360Right",
|
|
206
209
|
"IconShareArrowDown",
|
|
207
210
|
"IconSquareArrowBottomRight",
|
|
208
211
|
"IconSquareArrowCenter",
|
|
@@ -476,7 +479,7 @@
|
|
|
476
479
|
]
|
|
477
480
|
},
|
|
478
481
|
"Edit": {
|
|
479
|
-
"count":
|
|
482
|
+
"count": 77,
|
|
480
483
|
"icons": [
|
|
481
484
|
"IconAddKeyframe",
|
|
482
485
|
"IconBezier",
|
|
@@ -514,6 +517,7 @@
|
|
|
514
517
|
"IconFeather",
|
|
515
518
|
"IconGlass",
|
|
516
519
|
"IconGooey",
|
|
520
|
+
"IconHdr",
|
|
517
521
|
"IconHighlight",
|
|
518
522
|
"IconInputForm",
|
|
519
523
|
"IconKeyframe",
|
|
@@ -2633,6 +2637,7 @@
|
|
|
2633
2637
|
"IconHatBunny": "hat-bunny, surprise, magic hat",
|
|
2634
2638
|
"IconHatSparkle": "hat-sparkle, magic hat",
|
|
2635
2639
|
"IconHd": "hd",
|
|
2640
|
+
"IconHdr": "hdr, lighting, brightness",
|
|
2636
2641
|
"IconHead": "head, avatar",
|
|
2637
2642
|
"IconHeadline": "headline, heading",
|
|
2638
2643
|
"IconHeadphones": "headphones, support",
|
|
@@ -2680,6 +2685,7 @@
|
|
|
2680
2685
|
"IconImport2": "import-2, download, save",
|
|
2681
2686
|
"IconInboxChecked": "inbox-checked, saved",
|
|
2682
2687
|
"IconInboxEmpty": "inbox-empty",
|
|
2688
|
+
"IconIncrease": "increase, scale, show-more, change-position",
|
|
2683
2689
|
"IconInfinity": "infinity, loop, boomerang",
|
|
2684
2690
|
"IconInitiatives": "initiatives, nav, rooting",
|
|
2685
2691
|
"IconInjection": "injection",
|
|
@@ -3060,6 +3066,8 @@
|
|
|
3060
3066
|
"IconRoller": "roller, scooter",
|
|
3061
3067
|
"IconRose": "rose, flower, romance, love",
|
|
3062
3068
|
"IconRotate": "rotate, rotation, x-axis",
|
|
3069
|
+
"IconRotate360Left": "rotate-360-left",
|
|
3070
|
+
"IconRotate360Right": "rotate-360-right",
|
|
3063
3071
|
"IconRoulette1": "roulette-1, coincidence, gambling",
|
|
3064
3072
|
"IconRoulette2": "roulette-2, coincidence, gambling",
|
|
3065
3073
|
"IconRssFeed": "rss-feed",
|
|
@@ -3217,7 +3225,7 @@
|
|
|
3217
3225
|
"IconStage": "stage, show",
|
|
3218
3226
|
"IconStamps": "stamps, collection",
|
|
3219
3227
|
"IconStar": "star, favorite, award",
|
|
3220
|
-
"IconStarLines": "star-lines, features, favorite, award, to the moon",
|
|
3228
|
+
"IconStarLines": "star-lines, features, favorite, award, to the moon, rising",
|
|
3221
3229
|
"IconStarWand": "star-wand, magic",
|
|
3222
3230
|
"IconSteak": "steak, t-bone, raw",
|
|
3223
3231
|
"IconSteakSteamLines": "steak-steam-lines, t-bone",
|
package/index.d.ts
CHANGED
|
@@ -811,6 +811,7 @@ export { IconHashtag, default as IconHashtagDefault } from "./IconHashtag";
|
|
|
811
811
|
export { IconHatBunny, default as IconHatBunnyDefault } from "./IconHatBunny";
|
|
812
812
|
export { IconHatSparkle, default as IconHatSparkleDefault, } from "./IconHatSparkle";
|
|
813
813
|
export { IconHd, default as IconHdDefault } from "./IconHd";
|
|
814
|
+
export { IconHdr, default as IconHdrDefault } from "./IconHdr";
|
|
814
815
|
export { IconHead, default as IconHeadDefault } from "./IconHead";
|
|
815
816
|
export { IconHeadline, default as IconHeadlineDefault } from "./IconHeadline";
|
|
816
817
|
export { IconHeadphones, default as IconHeadphonesDefault, } from "./IconHeadphones";
|
|
@@ -858,6 +859,7 @@ export { IconImport, default as IconImportDefault } from "./IconImport";
|
|
|
858
859
|
export { IconImport2, default as IconImport2Default } from "./IconImport2";
|
|
859
860
|
export { IconInboxChecked, default as IconInboxCheckedDefault, } from "./IconInboxChecked";
|
|
860
861
|
export { IconInboxEmpty, default as IconInboxEmptyDefault, } from "./IconInboxEmpty";
|
|
862
|
+
export { IconIncrease, default as IconIncreaseDefault } from "./IconIncrease";
|
|
861
863
|
export { IconInfinity, default as IconInfinityDefault } from "./IconInfinity";
|
|
862
864
|
export { IconInitiatives, default as IconInitiativesDefault, } from "./IconInitiatives";
|
|
863
865
|
export { IconInjection, default as IconInjectionDefault, } from "./IconInjection";
|
|
@@ -1238,6 +1240,8 @@ export { IconRockingHorse, default as IconRockingHorseDefault, } from "./IconRoc
|
|
|
1238
1240
|
export { IconRoller, default as IconRollerDefault } from "./IconRoller";
|
|
1239
1241
|
export { IconRose, default as IconRoseDefault } from "./IconRose";
|
|
1240
1242
|
export { IconRotate, default as IconRotateDefault } from "./IconRotate";
|
|
1243
|
+
export { IconRotate360Left, default as IconRotate360LeftDefault, } from "./IconRotate360Left";
|
|
1244
|
+
export { IconRotate360Right, default as IconRotate360RightDefault, } from "./IconRotate360Right";
|
|
1241
1245
|
export { IconRoulette1, default as IconRoulette1Default, } from "./IconRoulette1";
|
|
1242
1246
|
export { IconRoulette2, default as IconRoulette2Default, } from "./IconRoulette2";
|
|
1243
1247
|
export { IconRssFeed, default as IconRssFeedDefault } from "./IconRssFeed";
|