@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.171 → 1.1.173
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/IconBezierCurves1/index.d.ts +4 -0
- package/IconBezierCurves1/index.js +2 -0
- package/IconBezierCurves1/index.js.map +1 -0
- package/IconBezierCurves1/index.mjs +2 -0
- package/IconBezierCurves1/index.mjs.map +1 -0
- package/IconMagicMouse/index.d.ts +4 -0
- package/IconMagicMouse/index.js +2 -0
- package/IconMagicMouse/index.js.map +1 -0
- package/IconMagicMouse/index.mjs +2 -0
- package/IconMagicMouse/index.mjs.map +1 -0
- package/IconSparkles2Bold/index.d.ts +4 -0
- package/IconSparkles2Bold/index.js +2 -0
- package/IconSparkles2Bold/index.js.map +1 -0
- package/IconSparkles2Bold/index.mjs +2 -0
- package/IconSparkles2Bold/index.mjs.map +1 -0
- package/IconSparkles3Bold/index.d.ts +4 -0
- package/IconSparkles3Bold/index.js +2 -0
- package/IconSparkles3Bold/index.js.map +1 -0
- package/IconSparkles3Bold/index.mjs +2 -0
- package/IconSparkles3Bold/index.mjs.map +1 -0
- package/IconStudioDisplay1/index.d.ts +4 -0
- package/IconStudioDisplay1/index.js +2 -0
- package/IconStudioDisplay1/index.js.map +1 -0
- package/IconStudioDisplay1/index.mjs +2 -0
- package/IconStudioDisplay1/index.mjs.map +1 -0
- package/README.md +5 -0
- package/filtered-icons.json +70 -0
- package/icons/index.d.ts +5 -0
- package/icons-index.json +15 -5
- package/index.d.ts +5 -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 +35 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var a=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of B(o))!d.call(r,l)&&l!==e&&p(r,l,{get:()=>o[l],enumerable:!(C=x(o,l))||C.enumerable});return r};var c=(r,o,e)=>(e=r!=null?a(I(r)):{},s(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(p({},"__esModule",{value:!0}),r);var y={};P(y,{IconBezierCurves1:()=>i,default:()=>v});module.exports=g(y);var t=c(require("react"));var u=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>u.default.createElement(m.Svg,{...e,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"),i=r=>t.default.createElement(f,{...r},t.default.createElement(n.Path,{d:"M21 4.5C10 4.5 14 19.5 3 19.5",stroke:"currentColor"}),t.default.createElement(n.Circle,{cx:"4.5",cy:"4.5",r:"1.5",fill:"currentColor"}),t.default.createElement(n.Circle,{cx:"19.5",cy:"19.5",r:"1.5",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M16 19.5H19.5",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M5 4.5H8",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M10 4.5H14",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M10 19.5H14",stroke:"currentColor"})),v=i;0&&(module.exports={IconBezierCurves1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBezierCurves1/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 IconBezierCurves1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21 4.5C10 4.5 14 19.5 3 19.5\" stroke=\"currentColor\" />\n <Circle cx=\"4.5\" cy=\"4.5\" r=\"1.5\" fill=\"currentColor\" />\n <Circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\" />\n <Path d=\"M16 19.5H19.5\" stroke=\"currentColor\" />\n <Path d=\"M5 4.5H8\" stroke=\"currentColor\" />\n <Path d=\"M10 4.5H14\" stroke=\"currentColor\" />\n <Path d=\"M10 19.5H14\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierCurves1;\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,EAA6B,4BAEhBC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,gCAAgC,OAAO,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,MAAM,EAAE,MAAM,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,EACzC,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,EAC3C,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,CAC9C,EAIGE,EAAQJ","names":["IconBezierCurves1_exports","__export","IconBezierCurves1","IconBezierCurves1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBezierCurves1","props","React","CentralIconBase","IconBezierCurves1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:o=24,...p})=>C.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as l,Path as e}from"react-native-svg";var c=t=>r.createElement(n,{...t},r.createElement(e,{d:"M21 4.5C10 4.5 14 19.5 3 19.5",stroke:"currentColor"}),r.createElement(l,{cx:"4.5",cy:"4.5",r:"1.5",fill:"currentColor"}),r.createElement(l,{cx:"19.5",cy:"19.5",r:"1.5",fill:"currentColor"}),r.createElement(e,{d:"M16 19.5H19.5",stroke:"currentColor"}),r.createElement(e,{d:"M5 4.5H8",stroke:"currentColor"}),r.createElement(e,{d:"M10 4.5H14",stroke:"currentColor"}),r.createElement(e,{d:"M10 19.5H14",stroke:"currentColor"})),P=c;export{c as IconBezierCurves1,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBezierCurves1/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 IconBezierCurves1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21 4.5C10 4.5 14 19.5 3 19.5\" stroke=\"currentColor\" />\n <Circle cx=\"4.5\" cy=\"4.5\" r=\"1.5\" fill=\"currentColor\" />\n <Circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\" />\n <Path d=\"M16 19.5H19.5\" stroke=\"currentColor\" />\n <Path d=\"M5 4.5H8\" stroke=\"currentColor\" />\n <Path d=\"M10 4.5H14\" stroke=\"currentColor\" />\n <Path d=\"M10 19.5H14\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierCurves1;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,OAAO,eAAe,EAC9DG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,MAAM,EAAE,MAAM,KAAK,eAAe,EACtDI,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACxDI,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,WAAW,OAAO,eAAe,EACzCG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,EAC3CG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,CAC9C,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconBezierCurves1","props","React","CentralIconBase","IconBezierCurves1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(C,r)=>{for(var o in r)e(C,o,{get:r[o],enumerable:!0})},l=(C,r,o,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!x.call(C,t)&&t!==o&&e(C,t,{get:()=>r[t],enumerable:!(a=B(r,t))||a.enumerable});return C};var s=(C,r,o)=>(o=C!=null?i(g(C)):{},l(r||!C||!C.__esModule?e(o,"default",{value:C,enumerable:!0}):o,C)),v=C=>l(e({},"__esModule",{value:!0}),C);var d={};P(d,{IconMagicMouse:()=>u,default:()=>M});module.exports=v(d);var n=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:C,size:r=24,...o})=>m.default.createElement(c.Svg,{...o,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var p=require("react-native-svg"),u=C=>n.default.createElement(f,{...C},n.default.createElement(p.Path,{d:"M11.8934 21.9998L12 22L12.1066 21.9998C16.9848 21.9776 17.8018 20.4301 17.8998 16.6137C17.9881 13.1759 18.1048 9.7368 17.8188 6.30332C17.6929 4.79088 17.3888 3.35907 15.7363 2.55058C14.6321 2.01034 13.2227 2 12 2C10.7773 2 9.36786 2.01034 8.26367 2.55058C6.61123 3.35907 6.30714 4.79088 6.18117 6.30332C5.89518 9.7368 6.01188 13.1759 6.10019 16.6137C6.19822 20.4301 7.09091 21.9779 11.8934 21.9998Z",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M13.3619 15.693C13.2475 15.7631 13.1527 15.861 13.0865 15.9776C13.0202 16.0943 12.9847 16.2258 12.9831 16.36C12.9835 16.5109 13.0283 16.6584 13.1117 16.7842C13.1952 16.91 13.3137 17.0086 13.4526 17.0677C13.3979 17.2444 13.3168 17.4119 13.2122 17.5645C13.0625 17.78 12.9059 17.9955 12.6678 17.9955C12.4296 17.9955 12.3683 17.8571 12.0939 17.8571C11.8262 17.8571 11.7309 18 11.5131 18C11.2954 18 11.1434 17.8004 10.9687 17.5554C10.738 17.2122 10.6112 16.8097 10.6035 16.3962C10.6035 15.7157 11.0459 15.355 11.4814 15.355C11.7128 15.355 11.9056 15.507 12.0508 15.507C12.1891 15.507 12.4046 15.346 12.6678 15.346C12.8031 15.3425 12.9371 15.3723 13.0582 15.4328C13.1792 15.4933 13.2835 15.5827 13.3619 15.693ZM12.543 15.0579C12.659 14.9214 12.7247 14.7493 12.729 14.5703C12.7292 14.5467 12.7269 14.5231 12.7222 14.5C12.523 14.5195 12.3387 14.6144 12.2073 14.7654C12.0902 14.8964 12.022 15.0639 12.0145 15.2395C12.0145 15.2608 12.0168 15.2821 12.0213 15.303C12.037 15.306 12.0529 15.3075 12.0689 15.3076C12.1607 15.3003 12.2501 15.2744 12.3316 15.2314C12.4131 15.1885 12.485 15.1295 12.543 15.0579Z",fill:"currentColor"})),M=u;0&&(module.exports={IconMagicMouse});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMagicMouse/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 IconMagicMouse: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.8934 21.9998L12 22L12.1066 21.9998C16.9848 21.9776 17.8018 20.4301 17.8998 16.6137C17.9881 13.1759 18.1048 9.7368 17.8188 6.30332C17.6929 4.79088 17.3888 3.35907 15.7363 2.55058C14.6321 2.01034 13.2227 2 12 2C10.7773 2 9.36786 2.01034 8.26367 2.55058C6.61123 3.35907 6.30714 4.79088 6.18117 6.30332C5.89518 9.7368 6.01188 13.1759 6.10019 16.6137C6.19822 20.4301 7.09091 21.9779 11.8934 21.9998Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M13.3619 15.693C13.2475 15.7631 13.1527 15.861 13.0865 15.9776C13.0202 16.0943 12.9847 16.2258 12.9831 16.36C12.9835 16.5109 13.0283 16.6584 13.1117 16.7842C13.1952 16.91 13.3137 17.0086 13.4526 17.0677C13.3979 17.2444 13.3168 17.4119 13.2122 17.5645C13.0625 17.78 12.9059 17.9955 12.6678 17.9955C12.4296 17.9955 12.3683 17.8571 12.0939 17.8571C11.8262 17.8571 11.7309 18 11.5131 18C11.2954 18 11.1434 17.8004 10.9687 17.5554C10.738 17.2122 10.6112 16.8097 10.6035 16.3962C10.6035 15.7157 11.0459 15.355 11.4814 15.355C11.7128 15.355 11.9056 15.507 12.0508 15.507C12.1891 15.507 12.4046 15.346 12.6678 15.346C12.8031 15.3425 12.9371 15.3723 13.0582 15.4328C13.1792 15.4933 13.2835 15.5827 13.3619 15.693ZM12.543 15.0579C12.659 14.9214 12.7247 14.7493 12.729 14.5703C12.7292 14.5467 12.7269 14.5231 12.7222 14.5C12.523 14.5195 12.3387 14.6144 12.2073 14.7654C12.0902 14.8964 12.022 15.0639 12.0145 15.2395C12.0145 15.2608 12.0168 15.2821 12.0213 15.303C12.037 15.306 12.0529 15.3075 12.0689 15.3076C12.1607 15.3003 12.2501 15.2744 12.3316 15.2314C12.4131 15.1885 12.485 15.1295 12.543 15.0579Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicMouse;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iZACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ukCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconMagicMouse_exports","__export","IconMagicMouse","IconMagicMouse_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMagicMouse","props","React","CentralIconBase","IconMagicMouse_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:r,size:C=24,...n})=>p.createElement(a,{...n,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);import{Path as e}from"react-native-svg";var l=r=>o.createElement(t,{...r},o.createElement(e,{d:"M11.8934 21.9998L12 22L12.1066 21.9998C16.9848 21.9776 17.8018 20.4301 17.8998 16.6137C17.9881 13.1759 18.1048 9.7368 17.8188 6.30332C17.6929 4.79088 17.3888 3.35907 15.7363 2.55058C14.6321 2.01034 13.2227 2 12 2C10.7773 2 9.36786 2.01034 8.26367 2.55058C6.61123 3.35907 6.30714 4.79088 6.18117 6.30332C5.89518 9.7368 6.01188 13.1759 6.10019 16.6137C6.19822 20.4301 7.09091 21.9779 11.8934 21.9998Z",stroke:"currentColor"}),o.createElement(e,{d:"M13.3619 15.693C13.2475 15.7631 13.1527 15.861 13.0865 15.9776C13.0202 16.0943 12.9847 16.2258 12.9831 16.36C12.9835 16.5109 13.0283 16.6584 13.1117 16.7842C13.1952 16.91 13.3137 17.0086 13.4526 17.0677C13.3979 17.2444 13.3168 17.4119 13.2122 17.5645C13.0625 17.78 12.9059 17.9955 12.6678 17.9955C12.4296 17.9955 12.3683 17.8571 12.0939 17.8571C11.8262 17.8571 11.7309 18 11.5131 18C11.2954 18 11.1434 17.8004 10.9687 17.5554C10.738 17.2122 10.6112 16.8097 10.6035 16.3962C10.6035 15.7157 11.0459 15.355 11.4814 15.355C11.7128 15.355 11.9056 15.507 12.0508 15.507C12.1891 15.507 12.4046 15.346 12.6678 15.346C12.8031 15.3425 12.9371 15.3723 13.0582 15.4328C13.1792 15.4933 13.2835 15.5827 13.3619 15.693ZM12.543 15.0579C12.659 14.9214 12.7247 14.7493 12.729 14.5703C12.7292 14.5467 12.7269 14.5231 12.7222 14.5C12.523 14.5195 12.3387 14.6144 12.2073 14.7654C12.0902 14.8964 12.022 15.0639 12.0145 15.2395C12.0145 15.2608 12.0168 15.2821 12.0213 15.303C12.037 15.306 12.0529 15.3075 12.0689 15.3076C12.1607 15.3003 12.2501 15.2744 12.3316 15.2314C12.4131 15.1885 12.485 15.1295 12.543 15.0579Z",fill:"currentColor"})),x=l;export{l as IconMagicMouse,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMagicMouse/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 IconMagicMouse: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.8934 21.9998L12 22L12.1066 21.9998C16.9848 21.9776 17.8018 20.4301 17.8998 16.6137C17.9881 13.1759 18.1048 9.7368 17.8188 6.30332C17.6929 4.79088 17.3888 3.35907 15.7363 2.55058C14.6321 2.01034 13.2227 2 12 2C10.7773 2 9.36786 2.01034 8.26367 2.55058C6.61123 3.35907 6.30714 4.79088 6.18117 6.30332C5.89518 9.7368 6.01188 13.1759 6.10019 16.6137C6.19822 20.4301 7.09091 21.9779 11.8934 21.9998Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M13.3619 15.693C13.2475 15.7631 13.1527 15.861 13.0865 15.9776C13.0202 16.0943 12.9847 16.2258 12.9831 16.36C12.9835 16.5109 13.0283 16.6584 13.1117 16.7842C13.1952 16.91 13.3137 17.0086 13.4526 17.0677C13.3979 17.2444 13.3168 17.4119 13.2122 17.5645C13.0625 17.78 12.9059 17.9955 12.6678 17.9955C12.4296 17.9955 12.3683 17.8571 12.0939 17.8571C11.8262 17.8571 11.7309 18 11.5131 18C11.2954 18 11.1434 17.8004 10.9687 17.5554C10.738 17.2122 10.6112 16.8097 10.6035 16.3962C10.6035 15.7157 11.0459 15.355 11.4814 15.355C11.7128 15.355 11.9056 15.507 12.0508 15.507C12.1891 15.507 12.4046 15.346 12.6678 15.346C12.8031 15.3425 12.9371 15.3723 13.0582 15.4328C13.1792 15.4933 13.2835 15.5827 13.3619 15.693ZM12.543 15.0579C12.659 14.9214 12.7247 14.7493 12.729 14.5703C12.7292 14.5467 12.7269 14.5231 12.7222 14.5C12.523 14.5195 12.3387 14.6144 12.2073 14.7654C12.0902 14.8964 12.022 15.0639 12.0145 15.2395C12.0145 15.2608 12.0168 15.2821 12.0213 15.303C12.037 15.306 12.0529 15.3075 12.0689 15.3076C12.1607 15.3003 12.2501 15.2744 12.3316 15.2314C12.4131 15.1885 12.485 15.1295 12.543 15.0579Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicMouse;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iZACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ukCACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMagicMouse","props","React","CentralIconBase","IconMagicMouse_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{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:!(a=u(o,e))||a.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},s(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),i=r=>s(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconSparkles2Bold:()=>f,default:()=>d});module.exports=i(v);var p=l(require("react"));var m=l(require("react")),C=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.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 L=require("react-native-svg"),f=r=>p.default.createElement(c,{...r},p.default.createElement(L.Path,{d:"M14.65 7.5H13.35L11.725 11.725L7.5 13.35V14.65L11.725 16.275L13.35 20.5H14.65L16.275 16.275L20.5 14.65V13.35L16.275 11.725L14.65 7.5Z",stroke:"currentColor"}),p.default.createElement(L.Path,{d:"M7.35 3.5H6.65L5.775 5.775L3.5 6.65V7.35L5.775 8.225L6.65 10.5H7.35L8.225 8.225L10.5 7.35V6.65L8.225 5.775L7.35 3.5Z",stroke:"currentColor"})),d=f;0&&(module.exports={IconSparkles2Bold});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSparkles2Bold/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 IconSparkles2Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.65 7.5H13.35L11.725 11.725L7.5 13.35V14.65L11.725 16.275L13.35 20.5H14.65L16.275 16.275L20.5 14.65V13.35L16.275 11.725L14.65 7.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M7.35 3.5H6.65L5.775 5.775L3.5 6.65V7.35L5.775 8.225L6.65 10.5H7.35L8.225 8.225L10.5 7.35V6.65L8.225 5.775L7.35 3.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles2Bold;\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,QACC,EAAE,wIACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uHACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconSparkles2Bold_exports","__export","IconSparkles2Bold","IconSparkles2Bold_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSparkles2Bold","props","React","CentralIconBase","IconSparkles2Bold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import L from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>L.createElement(a,{...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 s=o=>t.createElement(e,{...o},t.createElement(n,{d:"M14.65 7.5H13.35L11.725 11.725L7.5 13.35V14.65L11.725 16.275L13.35 20.5H14.65L16.275 16.275L20.5 14.65V13.35L16.275 11.725L14.65 7.5Z",stroke:"currentColor"}),t.createElement(n,{d:"M7.35 3.5H6.65L5.775 5.775L3.5 6.65V7.35L5.775 8.225L6.65 10.5H7.35L8.225 8.225L10.5 7.35V6.65L8.225 5.775L7.35 3.5Z",stroke:"currentColor"})),P=s;export{s as IconSparkles2Bold,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSparkles2Bold/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 IconSparkles2Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.65 7.5H13.35L11.725 11.725L7.5 13.35V14.65L11.725 16.275L13.35 20.5H14.65L16.275 16.275L20.5 14.65V13.35L16.275 11.725L14.65 7.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M7.35 3.5H6.65L5.775 5.775L3.5 6.65V7.35L5.775 8.225L6.65 10.5H7.35L8.225 8.225L10.5 7.35V6.65L8.225 5.775L7.35 3.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles2Bold;\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,CACC,EAAE,wIACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uHACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkles2Bold","props","React","CentralIconBase","IconSparkles2Bold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var L in o)n(r,L,{get:o[L],enumerable:!0})},C=(r,o,L,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==L&&n(r,t,{get:()=>o[t],enumerable:!(p=i(o,t))||p.enumerable});return r};var a=(r,o,L)=>(L=r!=null?u(I(r)):{},C(o||!r||!r.__esModule?n(L,"default",{value:r,enumerable:!0}):L,r)),d=r=>C(n({},"__esModule",{value:!0}),r);var H={};P(H,{IconSparkles3Bold:()=>c,default:()=>g});module.exports=d(H);var e=a(require("react"));var s=a(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...L})=>s.default.createElement(m.Svg,{...L,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),c=r=>e.default.createElement(f,{...r},e.default.createElement(l.Path,{d:"M16.2568 6.5L17.6338 10.0791L17.7129 10.2871L17.9209 10.3662L21.5 11.7422V12.2568L17.9209 13.6338L17.7129 13.7129L17.6338 13.9209L16.2568 17.5H15.7432L14.3662 13.9209L14.2871 13.7129L14.0791 13.6338L10.5 12.2568V11.7422L14.0791 10.3662L14.2871 10.2871L14.3662 10.0791L15.7432 6.5H16.2568Z",fill:"currentColor",stroke:"currentColor"}),e.default.createElement(l.Path,{d:"M6.4 4H5.6L4.6 6.6L2 7.6V8.4L4.6 9.4L5.6 12H6.4L7.4 9.4L10 8.4V7.6L7.4 6.6L6.4 4Z",fill:"currentColor"}),e.default.createElement(l.Path,{d:"M8.3 14H7.7L6.95 15.95L5 16.7V17.3L6.95 18.05L7.7 20H8.3L9.05 18.05L11 17.3V16.7L9.05 15.95L8.3 14Z",fill:"currentColor"})),g=c;0&&(module.exports={IconSparkles3Bold});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSparkles3Bold/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 IconSparkles3Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.2568 6.5L17.6338 10.0791L17.7129 10.2871L17.9209 10.3662L21.5 11.7422V12.2568L17.9209 13.6338L17.7129 13.7129L17.6338 13.9209L16.2568 17.5H15.7432L14.3662 13.9209L14.2871 13.7129L14.0791 13.6338L10.5 12.2568V11.7422L14.0791 10.3662L14.2871 10.2871L14.3662 10.0791L15.7432 6.5H16.2568Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M6.4 4H5.6L4.6 6.6L2 7.6V8.4L4.6 9.4L5.6 12H6.4L7.4 9.4L10 8.4V7.6L7.4 6.6L6.4 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.3 14H7.7L6.95 15.95L5 16.7V17.3L6.95 18.05L7.7 20H8.3L9.05 18.05L11 17.3V16.7L9.05 15.95L8.3 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles3Bold;\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,QACC,EAAE,mSACF,KAAK,eACL,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSparkles3Bold_exports","__export","IconSparkles3Bold","IconSparkles3Bold_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSparkles3Bold","props","React","CentralIconBase","IconSparkles3Bold_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:L,size:r=24,...n})=>l.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},L);import{Path as t}from"react-native-svg";var C=L=>o.createElement(e,{...L},o.createElement(t,{d:"M16.2568 6.5L17.6338 10.0791L17.7129 10.2871L17.9209 10.3662L21.5 11.7422V12.2568L17.9209 13.6338L17.7129 13.7129L17.6338 13.9209L16.2568 17.5H15.7432L14.3662 13.9209L14.2871 13.7129L14.0791 13.6338L10.5 12.2568V11.7422L14.0791 10.3662L14.2871 10.2871L14.3662 10.0791L15.7432 6.5H16.2568Z",fill:"currentColor",stroke:"currentColor"}),o.createElement(t,{d:"M6.4 4H5.6L4.6 6.6L2 7.6V8.4L4.6 9.4L5.6 12H6.4L7.4 9.4L10 8.4V7.6L7.4 6.6L6.4 4Z",fill:"currentColor"}),o.createElement(t,{d:"M8.3 14H7.7L6.95 15.95L5 16.7V17.3L6.95 18.05L7.7 20H8.3L9.05 18.05L11 17.3V16.7L9.05 15.95L8.3 14Z",fill:"currentColor"})),x=C;export{C as IconSparkles3Bold,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSparkles3Bold/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 IconSparkles3Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.2568 6.5L17.6338 10.0791L17.7129 10.2871L17.9209 10.3662L21.5 11.7422V12.2568L17.9209 13.6338L17.7129 13.7129L17.6338 13.9209L16.2568 17.5H15.7432L14.3662 13.9209L14.2871 13.7129L14.0791 13.6338L10.5 12.2568V11.7422L14.0791 10.3662L14.2871 10.2871L14.3662 10.0791L15.7432 6.5H16.2568Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M6.4 4H5.6L4.6 6.6L2 7.6V8.4L4.6 9.4L5.6 12H6.4L7.4 9.4L10 8.4V7.6L7.4 6.6L6.4 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.3 14H7.7L6.95 15.95L5 16.7V17.3L6.95 18.05L7.7 20H8.3L9.05 18.05L11 17.3V16.7L9.05 15.95L8.3 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles3Bold;\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,CACC,EAAE,mSACF,KAAK,eACL,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sGACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkles3Bold","props","React","CentralIconBase","IconSparkles3Bold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},l=(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?i(x(r)):{},l(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>l(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconStudioDisplay1:()=>u,default:()=>v});module.exports=d(y);var p=m(require("react"));var C=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>C.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 a=require("react-native-svg"),u=r=>p.default.createElement(f,{...r},p.default.createElement(a.Path,{d:"M21.5 3.5H2.5V15.5H21.5V3.5Z",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M9.5 15.5V20.5H14.5V15.5",stroke:"currentColor"})),v=u;0&&(module.exports={IconStudioDisplay1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStudioDisplay1/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 IconStudioDisplay1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21.5 3.5H2.5V15.5H21.5V3.5Z\" stroke=\"currentColor\" />\n <Path d=\"M9.5 15.5V20.5H14.5V15.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconStudioDisplay1;\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,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,2BAA2B,OAAO,eAAe,CAC3D,EAIGE,EAAQJ","names":["IconStudioDisplay1_exports","__export","IconStudioDisplay1","IconStudioDisplay1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStudioDisplay1","props","React","CentralIconBase","IconStudioDisplay1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import a from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>a.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 l=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21.5 3.5H2.5V15.5H21.5V3.5Z",stroke:"currentColor"}),t.createElement(n,{d:"M9.5 15.5V20.5H14.5V15.5",stroke:"currentColor"})),P=l;export{l as IconStudioDisplay1,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStudioDisplay1/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 IconStudioDisplay1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21.5 3.5H2.5V15.5H21.5V3.5Z\" stroke=\"currentColor\" />\n <Path d=\"M9.5 15.5V20.5H14.5V15.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconStudioDisplay1;\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,+BAA+B,OAAO,eAAe,EAC7DG,EAAA,cAACH,EAAA,CAAK,EAAE,2BAA2B,OAAO,eAAe,CAC3D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStudioDisplay1","props","React","CentralIconBase","IconStudioDisplay1_default"]}
|
package/README.md
CHANGED
|
@@ -203,6 +203,8 @@ Below is a complete list of available icons:
|
|
|
203
203
|
- IconSparkle3
|
|
204
204
|
- IconSparkleCentral
|
|
205
205
|
- IconSparkleHightlight
|
|
206
|
+
- IconSparkles2Bold
|
|
207
|
+
- IconSparkles3Bold
|
|
206
208
|
- IconSparklesSoft
|
|
207
209
|
- IconSparklesThree
|
|
208
210
|
- IconSparklesTwo
|
|
@@ -604,6 +606,7 @@ Below is a complete list of available icons:
|
|
|
604
606
|
- IconMacbookAir
|
|
605
607
|
- IconMacintosh
|
|
606
608
|
- IconMacMini
|
|
609
|
+
- IconMagicMouse
|
|
607
610
|
- IconMouse
|
|
608
611
|
- IconMouseClassic
|
|
609
612
|
- IconMouseClassic2
|
|
@@ -632,6 +635,7 @@ Below is a complete list of available icons:
|
|
|
632
635
|
- IconSpeaker
|
|
633
636
|
- IconStorage
|
|
634
637
|
- IconStudioDisplay
|
|
638
|
+
- IconStudioDisplay1
|
|
635
639
|
- IconTablet
|
|
636
640
|
- IconTape
|
|
637
641
|
- IconTape2
|
|
@@ -653,6 +657,7 @@ Below is a complete list of available icons:
|
|
|
653
657
|
- IconBezierAdd
|
|
654
658
|
- IconBezierCircle
|
|
655
659
|
- IconBezierCurve
|
|
660
|
+
- IconBezierCurves1
|
|
656
661
|
- IconBezierEdit
|
|
657
662
|
- IconBezierPointer
|
|
658
663
|
- IconBezierRemove
|
package/filtered-icons.json
CHANGED
|
@@ -3304,6 +3304,20 @@
|
|
|
3304
3304
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3305
3305
|
"componentName": "IconBezierCurves"
|
|
3306
3306
|
},
|
|
3307
|
+
{
|
|
3308
|
+
"category": "Edit",
|
|
3309
|
+
"svg": "<path d=\"M21 4.5C10 4.5 14 19.5 3 19.5\" stroke=\"currentColor\"/><circle cx=\"4.5\" cy=\"4.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M16 19.5H19.5\" stroke=\"currentColor\"/><path d=\"M5 4.5H8\" stroke=\"currentColor\"/><path d=\"M10 4.5H14\" stroke=\"currentColor\"/><path d=\"M10 19.5H14\" stroke=\"currentColor\"/>",
|
|
3310
|
+
"iconName": "bezier-curves, path",
|
|
3311
|
+
"variant": {
|
|
3312
|
+
"join": "square",
|
|
3313
|
+
"filled": "off",
|
|
3314
|
+
"radius": "0",
|
|
3315
|
+
"stroke": "1"
|
|
3316
|
+
},
|
|
3317
|
+
"createdAt": "2026-03-20T10:01:21.055348+00:00",
|
|
3318
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3319
|
+
"componentName": "IconBezierCurves1"
|
|
3320
|
+
},
|
|
3307
3321
|
{
|
|
3308
3322
|
"category": "Edit",
|
|
3309
3323
|
"svg": "<path d=\"M3.5 3.5H8.5V8.5H3.5V3.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M15.5 3.5H20.5V8.5H18H15.5V6V3.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M3.5 15.5H8.5V18V20.5H3.5V15.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M13.5 20.4999V18.1666L17.75 13.9166C18.3943 13.2723 19.439 13.2723 20.0833 13.9166C20.7277 14.5609 20.7277 15.6056 20.0833 16.2499L15.8333 20.4999H13.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M15.5 6H8.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M6 8.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M18 8.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.5 18H10.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -15134,6 +15148,20 @@
|
|
|
15134
15148
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
15135
15149
|
"componentName": "IconMagicLamp"
|
|
15136
15150
|
},
|
|
15151
|
+
{
|
|
15152
|
+
"category": "Devices & Signals",
|
|
15153
|
+
"svg": "<path d=\"M11.8934 21.9998L12 22L12.1066 21.9998C16.9848 21.9776 17.8018 20.4301 17.8998 16.6137C17.9881 13.1759 18.1048 9.7368 17.8188 6.30332C17.6929 4.79088 17.3888 3.35907 15.7363 2.55058C14.6321 2.01034 13.2227 2 12 2C10.7773 2 9.36786 2.01034 8.26367 2.55058C6.61123 3.35907 6.30714 4.79088 6.18117 6.30332C5.89518 9.7368 6.01188 13.1759 6.10019 16.6137C6.19822 20.4301 7.09091 21.9779 11.8934 21.9998Z\" stroke=\"currentColor\"/><path d=\"M13.3619 15.693C13.2475 15.7631 13.1527 15.861 13.0865 15.9776C13.0202 16.0943 12.9847 16.2258 12.9831 16.36C12.9835 16.5109 13.0283 16.6584 13.1117 16.7842C13.1952 16.91 13.3137 17.0086 13.4526 17.0677C13.3979 17.2444 13.3168 17.4119 13.2122 17.5645C13.0625 17.78 12.9059 17.9955 12.6678 17.9955C12.4296 17.9955 12.3683 17.8571 12.0939 17.8571C11.8262 17.8571 11.7309 18 11.5131 18C11.2954 18 11.1434 17.8004 10.9687 17.5554C10.738 17.2122 10.6112 16.8097 10.6035 16.3962C10.6035 15.7157 11.0459 15.355 11.4814 15.355C11.7128 15.355 11.9056 15.507 12.0508 15.507C12.1891 15.507 12.4046 15.346 12.6678 15.346C12.8031 15.3425 12.9371 15.3723 13.0582 15.4328C13.1792 15.4933 13.2835 15.5827 13.3619 15.693ZM12.543 15.0579C12.659 14.9214 12.7247 14.7493 12.729 14.5703C12.7292 14.5467 12.7269 14.5231 12.7222 14.5C12.523 14.5195 12.3387 14.6144 12.2073 14.7654C12.0902 14.8964 12.022 15.0639 12.0145 15.2395C12.0145 15.2608 12.0168 15.2821 12.0213 15.303C12.037 15.306 12.0529 15.3075 12.0689 15.3076C12.1607 15.3003 12.2501 15.2744 12.3316 15.2314C12.4131 15.1885 12.485 15.1295 12.543 15.0579Z\" fill=\"currentColor\"/>",
|
|
15154
|
+
"iconName": "magic-mouse",
|
|
15155
|
+
"variant": {
|
|
15156
|
+
"join": "square",
|
|
15157
|
+
"filled": "off",
|
|
15158
|
+
"radius": "0",
|
|
15159
|
+
"stroke": "1"
|
|
15160
|
+
},
|
|
15161
|
+
"createdAt": "2026-03-20T10:01:21.055348+00:00",
|
|
15162
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
15163
|
+
"componentName": "IconMagicMouse"
|
|
15164
|
+
},
|
|
15137
15165
|
{
|
|
15138
15166
|
"category": "AI & Magic",
|
|
15139
15167
|
"svg": "<path d=\"M18.95 5.05024L17.1115 9.50722L20.2373 13.1779L15.4303 12.8067L12.9052 16.9138L11.7729 12.2274L7.08643 11.095L11.1936 8.56992L10.8223 3.76294L14.493 6.88877L18.95 5.05024Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M3.5 20.5L11.4405 12.5596\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -22036,6 +22064,34 @@
|
|
|
22036
22064
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22037
22065
|
"componentName": "IconSparkleHightlight"
|
|
22038
22066
|
},
|
|
22067
|
+
{
|
|
22068
|
+
"category": "AI & Magic",
|
|
22069
|
+
"svg": "<path d=\"M14.65 7.5H13.35L11.725 11.725L7.5 13.35V14.65L11.725 16.275L13.35 20.5H14.65L16.275 16.275L20.5 14.65V13.35L16.275 11.725L14.65 7.5Z\" stroke=\"currentColor\"/><path d=\"M7.35 3.5H6.65L5.775 5.775L3.5 6.65V7.35L5.775 8.225L6.65 10.5H7.35L8.225 8.225L10.5 7.35V6.65L8.225 5.775L7.35 3.5Z\" stroke=\"currentColor\"/>",
|
|
22070
|
+
"iconName": "sparkles-2-bold, ai, magic",
|
|
22071
|
+
"variant": {
|
|
22072
|
+
"join": "square",
|
|
22073
|
+
"filled": "off",
|
|
22074
|
+
"radius": "0",
|
|
22075
|
+
"stroke": "1"
|
|
22076
|
+
},
|
|
22077
|
+
"createdAt": "2026-03-20T10:01:21.055348+00:00",
|
|
22078
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22079
|
+
"componentName": "IconSparkles2Bold"
|
|
22080
|
+
},
|
|
22081
|
+
{
|
|
22082
|
+
"category": "AI & Magic",
|
|
22083
|
+
"svg": "<path d=\"M16.2568 6.5L17.6338 10.0791L17.7129 10.2871L17.9209 10.3662L21.5 11.7422V12.2568L17.9209 13.6338L17.7129 13.7129L17.6338 13.9209L16.2568 17.5H15.7432L14.3662 13.9209L14.2871 13.7129L14.0791 13.6338L10.5 12.2568V11.7422L14.0791 10.3662L14.2871 10.2871L14.3662 10.0791L15.7432 6.5H16.2568Z\" fill=\"currentColor\" stroke=\"currentColor\"/><path d=\"M6.4 4H5.6L4.6 6.6L2 7.6V8.4L4.6 9.4L5.6 12H6.4L7.4 9.4L10 8.4V7.6L7.4 6.6L6.4 4Z\" fill=\"currentColor\"/><path d=\"M8.3 14H7.7L6.95 15.95L5 16.7V17.3L6.95 18.05L7.7 20H8.3L9.05 18.05L11 17.3V16.7L9.05 15.95L8.3 14Z\" fill=\"currentColor\"/>",
|
|
22084
|
+
"iconName": "sparkles-3-bold, ai, magic",
|
|
22085
|
+
"variant": {
|
|
22086
|
+
"join": "square",
|
|
22087
|
+
"filled": "off",
|
|
22088
|
+
"radius": "0",
|
|
22089
|
+
"stroke": "1"
|
|
22090
|
+
},
|
|
22091
|
+
"createdAt": "2026-03-20T10:01:21.055348+00:00",
|
|
22092
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22093
|
+
"componentName": "IconSparkles3Bold"
|
|
22094
|
+
},
|
|
22039
22095
|
{
|
|
22040
22096
|
"category": "AI & Magic",
|
|
22041
22097
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 13C13.75 13 11 15.75 11 22C11 15.75 8.25 13 2 13C8.25 13 11 10.25 11 4C11 10.25 13.75 13 20 13Z\" stroke=\"currentColor\"/><path d=\"M20.605 3.40252C20.1071 2.89545 19.8069 2.16587 19.6944 1.18752V1H19.3056V1.18732C19.1893 2.18155 18.8889 2.89687 18.3929 3.39287C17.8969 3.88886 17.1816 4.18929 16.1873 4.30556H16V4.69445H16.1875C17.1659 4.80686 17.8955 5.10711 18.4025 5.60501C18.9088 6.10215 19.2161 6.81884 19.3056 7.81012V8H19.6944V7.8099C19.7803 6.83433 20.0872 6.10349 20.5954 5.59537C21.1035 5.08725 21.8343 4.78027 22.8099 4.69445H23V4.30556H22.8101C21.8188 4.21611 21.1021 3.90882 20.605 3.40252Z\" fill=\"currentColor\"/>",
|
|
@@ -23212,6 +23268,20 @@
|
|
|
23212
23268
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
23213
23269
|
"componentName": "IconStudioDisplay"
|
|
23214
23270
|
},
|
|
23271
|
+
{
|
|
23272
|
+
"category": "Devices & Signals",
|
|
23273
|
+
"svg": "<path d=\"M21.5 3.5H2.5V15.5H21.5V3.5Z\" stroke=\"currentColor\"/><path d=\"M9.5 15.5V20.5H14.5V15.5\" stroke=\"currentColor\"/>",
|
|
23274
|
+
"iconName": "studio-display, xdr, imac",
|
|
23275
|
+
"variant": {
|
|
23276
|
+
"join": "square",
|
|
23277
|
+
"filled": "off",
|
|
23278
|
+
"radius": "0",
|
|
23279
|
+
"stroke": "1"
|
|
23280
|
+
},
|
|
23281
|
+
"createdAt": "2026-03-20T12:00:42.750372+00:00",
|
|
23282
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
23283
|
+
"componentName": "IconStudioDisplay1"
|
|
23284
|
+
},
|
|
23215
23285
|
{
|
|
23216
23286
|
"category": "Typography",
|
|
23217
23287
|
"svg": "<path d=\"M16.5 20.5H16V21H16.5V20.5ZM21.5 21H22V20H21.5V21ZM16.5 21H21.5V20H16.5V21ZM19.0065 13C20.1578 13 21 13.7515 21 14.8423H22C22 13.1102 20.6166 12 19.0065 12V13ZM21 14.8423C21 15.325 20.781 15.7217 20.3739 16.1095C19.9532 16.5102 19.3805 16.8559 18.743 17.238C18.1302 17.6052 17.4528 18.0088 16.9358 18.5029C16.4052 19.01 16 19.6531 16 20.5H17C17 20.0136 17.2198 19.6147 17.6267 19.2258C18.0472 18.824 18.6198 18.4776 19.257 18.0957C19.8695 17.7287 20.5468 17.3258 21.0636 16.8335C21.594 16.3282 22 15.6871 22 14.8423H21ZM17.0156 14.8296C17.1041 13.8285 17.8193 13 19.0065 13V12C17.2346 12 16.1476 13.2934 16.0195 14.7414L17.0156 14.8296Z\" fill=\"currentColor\"/><path d=\"M2.5 5.5L13.5 18.5M13.5 5.5L2.5 18.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -235,6 +235,7 @@ export type CentralIconName =
|
|
|
235
235
|
| "IconBezierCircle"
|
|
236
236
|
| "IconBezierCurve"
|
|
237
237
|
| "IconBezierCurves"
|
|
238
|
+
| "IconBezierCurves1"
|
|
238
239
|
| "IconBezierEdit"
|
|
239
240
|
| "IconBezierPointer"
|
|
240
241
|
| "IconBezierRemove"
|
|
@@ -1080,6 +1081,7 @@ export type CentralIconName =
|
|
|
1080
1081
|
| "IconMagicEdit"
|
|
1081
1082
|
| "IconMagicHands"
|
|
1082
1083
|
| "IconMagicLamp"
|
|
1084
|
+
| "IconMagicMouse"
|
|
1083
1085
|
| "IconMagicWand"
|
|
1084
1086
|
| "IconMagicWand2"
|
|
1085
1087
|
| "IconMagicWand3"
|
|
@@ -1573,6 +1575,8 @@ export type CentralIconName =
|
|
|
1573
1575
|
| "IconSparkle3"
|
|
1574
1576
|
| "IconSparkleCentral"
|
|
1575
1577
|
| "IconSparkleHightlight"
|
|
1578
|
+
| "IconSparkles2Bold"
|
|
1579
|
+
| "IconSparkles3Bold"
|
|
1576
1580
|
| "IconSparklesSoft"
|
|
1577
1581
|
| "IconSparklesThree"
|
|
1578
1582
|
| "IconSparklesTwo"
|
|
@@ -1657,6 +1661,7 @@ export type CentralIconName =
|
|
|
1657
1661
|
| "IconStreaming"
|
|
1658
1662
|
| "IconStrikeThrough"
|
|
1659
1663
|
| "IconStudioDisplay"
|
|
1664
|
+
| "IconStudioDisplay1"
|
|
1660
1665
|
| "IconSubscript"
|
|
1661
1666
|
| "IconSubscriptionStar"
|
|
1662
1667
|
| "IconSubscriptionTick1"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.173",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-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": 1905,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 74,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiTokens",
|
|
20
20
|
"IconAiTranslate",
|
|
@@ -73,6 +73,8 @@
|
|
|
73
73
|
"IconSparkle3",
|
|
74
74
|
"IconSparkleCentral",
|
|
75
75
|
"IconSparkleHightlight",
|
|
76
|
+
"IconSparkles2Bold",
|
|
77
|
+
"IconSparkles3Bold",
|
|
76
78
|
"IconSparklesSoft",
|
|
77
79
|
"IconSparklesThree",
|
|
78
80
|
"IconSparklesTwo",
|
|
@@ -454,7 +456,7 @@
|
|
|
454
456
|
]
|
|
455
457
|
},
|
|
456
458
|
"Devices & Signals": {
|
|
457
|
-
"count":
|
|
459
|
+
"count": 78,
|
|
458
460
|
"icons": [
|
|
459
461
|
"IconAgentNetwork",
|
|
460
462
|
"IconAirdrop",
|
|
@@ -492,6 +494,7 @@
|
|
|
492
494
|
"IconMacbookAir",
|
|
493
495
|
"IconMacintosh",
|
|
494
496
|
"IconMacMini",
|
|
497
|
+
"IconMagicMouse",
|
|
495
498
|
"IconMouse",
|
|
496
499
|
"IconMouseClassic",
|
|
497
500
|
"IconMouseClassic2",
|
|
@@ -520,6 +523,7 @@
|
|
|
520
523
|
"IconSpeaker",
|
|
521
524
|
"IconStorage",
|
|
522
525
|
"IconStudioDisplay",
|
|
526
|
+
"IconStudioDisplay1",
|
|
523
527
|
"IconTablet",
|
|
524
528
|
"IconTape",
|
|
525
529
|
"IconTape2",
|
|
@@ -535,7 +539,7 @@
|
|
|
535
539
|
]
|
|
536
540
|
},
|
|
537
541
|
"Edit": {
|
|
538
|
-
"count":
|
|
542
|
+
"count": 89,
|
|
539
543
|
"icons": [
|
|
540
544
|
"Icon3d",
|
|
541
545
|
"IconAddKeyframe",
|
|
@@ -543,6 +547,7 @@
|
|
|
543
547
|
"IconBezierAdd",
|
|
544
548
|
"IconBezierCircle",
|
|
545
549
|
"IconBezierCurve",
|
|
550
|
+
"IconBezierCurves1",
|
|
546
551
|
"IconBezierEdit",
|
|
547
552
|
"IconBezierPointer",
|
|
548
553
|
"IconBezierRemove",
|
|
@@ -2338,6 +2343,7 @@
|
|
|
2338
2343
|
"IconBezierCircle": "bezier-circle, vector, nodes",
|
|
2339
2344
|
"IconBezierCurve": "bezier-curve, bezier, vector, svg",
|
|
2340
2345
|
"IconBezierCurves": "bezier-curves, animation, motion, spring",
|
|
2346
|
+
"IconBezierCurves1": "bezier-curves, path",
|
|
2341
2347
|
"IconBezierEdit": "bezier--edit",
|
|
2342
2348
|
"IconBezierPointer": "bezier-pointer",
|
|
2343
2349
|
"IconBezierRemove": "bezier-remove, vector, nodes",
|
|
@@ -3183,6 +3189,7 @@
|
|
|
3183
3189
|
"IconMagicEdit": "magic-edit, magic-writing",
|
|
3184
3190
|
"IconMagicHands": "magic-hands, rainbow-hands",
|
|
3185
3191
|
"IconMagicLamp": "magic-lamp, wish, agents, genie",
|
|
3192
|
+
"IconMagicMouse": "magic-mouse",
|
|
3186
3193
|
"IconMagicWand": "magic-wand, magic stick, star",
|
|
3187
3194
|
"IconMagicWand2": "magic-wand-2, magic stick, star",
|
|
3188
3195
|
"IconMagicWand3": "magic-wand-3, magic stick, star",
|
|
@@ -3676,6 +3683,8 @@
|
|
|
3676
3683
|
"IconSparkle3": "sparkle-3, ai, star, magic",
|
|
3677
3684
|
"IconSparkleCentral": "sparkle-central, star, magic, ai",
|
|
3678
3685
|
"IconSparkleHightlight": "sparkle-hightlight, special, ai, magic",
|
|
3686
|
+
"IconSparkles2Bold": "sparkles-2-bold, ai, magic",
|
|
3687
|
+
"IconSparkles3Bold": "sparkles-3-bold, ai, magic",
|
|
3679
3688
|
"IconSparklesSoft": "sparkles-soft",
|
|
3680
3689
|
"IconSparklesThree": "sparkles-three, ai 3 stars, sparkles, ✨",
|
|
3681
3690
|
"IconSparklesTwo": "sparkles-two, ai 2 stars, sparkles, ✨",
|
|
@@ -3760,6 +3769,7 @@
|
|
|
3760
3769
|
"IconStreaming": "streaming, live, stream",
|
|
3761
3770
|
"IconStrikeThrough": "strike-through",
|
|
3762
3771
|
"IconStudioDisplay": "studio-display, thunderbolt",
|
|
3772
|
+
"IconStudioDisplay1": "studio-display, xdr, imac",
|
|
3763
3773
|
"IconSubscript": "subscript",
|
|
3764
3774
|
"IconSubscriptionStar": "subscription-star, verify",
|
|
3765
3775
|
"IconSubscriptionTick1": "subscription-tick-1, verify",
|
package/index.d.ts
CHANGED
|
@@ -234,6 +234,7 @@ export { IconBezierAdd, default as IconBezierAddDefault, } from "./IconBezierAdd
|
|
|
234
234
|
export { IconBezierCircle, default as IconBezierCircleDefault, } from "./IconBezierCircle";
|
|
235
235
|
export { IconBezierCurve, default as IconBezierCurveDefault, } from "./IconBezierCurve";
|
|
236
236
|
export { IconBezierCurves, default as IconBezierCurvesDefault, } from "./IconBezierCurves";
|
|
237
|
+
export { IconBezierCurves1, default as IconBezierCurves1Default, } from "./IconBezierCurves1";
|
|
237
238
|
export { IconBezierEdit, default as IconBezierEditDefault, } from "./IconBezierEdit";
|
|
238
239
|
export { IconBezierPointer, default as IconBezierPointerDefault, } from "./IconBezierPointer";
|
|
239
240
|
export { IconBezierRemove, default as IconBezierRemoveDefault, } from "./IconBezierRemove";
|
|
@@ -1079,6 +1080,7 @@ export { IconMagicBook, default as IconMagicBookDefault, } from "./IconMagicBook
|
|
|
1079
1080
|
export { IconMagicEdit, default as IconMagicEditDefault, } from "./IconMagicEdit";
|
|
1080
1081
|
export { IconMagicHands, default as IconMagicHandsDefault, } from "./IconMagicHands";
|
|
1081
1082
|
export { IconMagicLamp, default as IconMagicLampDefault, } from "./IconMagicLamp";
|
|
1083
|
+
export { IconMagicMouse, default as IconMagicMouseDefault, } from "./IconMagicMouse";
|
|
1082
1084
|
export { IconMagicWand, default as IconMagicWandDefault, } from "./IconMagicWand";
|
|
1083
1085
|
export { IconMagicWand2, default as IconMagicWand2Default, } from "./IconMagicWand2";
|
|
1084
1086
|
export { IconMagicWand3, default as IconMagicWand3Default, } from "./IconMagicWand3";
|
|
@@ -1572,6 +1574,8 @@ export { IconSparkle2, default as IconSparkle2Default } from "./IconSparkle2";
|
|
|
1572
1574
|
export { IconSparkle3, default as IconSparkle3Default } from "./IconSparkle3";
|
|
1573
1575
|
export { IconSparkleCentral, default as IconSparkleCentralDefault, } from "./IconSparkleCentral";
|
|
1574
1576
|
export { IconSparkleHightlight, default as IconSparkleHightlightDefault, } from "./IconSparkleHightlight";
|
|
1577
|
+
export { IconSparkles2Bold, default as IconSparkles2BoldDefault, } from "./IconSparkles2Bold";
|
|
1578
|
+
export { IconSparkles3Bold, default as IconSparkles3BoldDefault, } from "./IconSparkles3Bold";
|
|
1575
1579
|
export { IconSparklesSoft, default as IconSparklesSoftDefault, } from "./IconSparklesSoft";
|
|
1576
1580
|
export { IconSparklesThree, default as IconSparklesThreeDefault, } from "./IconSparklesThree";
|
|
1577
1581
|
export { IconSparklesTwo, default as IconSparklesTwoDefault, } from "./IconSparklesTwo";
|
|
@@ -1656,6 +1660,7 @@ export { IconStrawberry, default as IconStrawberryDefault, } from "./IconStrawbe
|
|
|
1656
1660
|
export { IconStreaming, default as IconStreamingDefault, } from "./IconStreaming";
|
|
1657
1661
|
export { IconStrikeThrough, default as IconStrikeThroughDefault, } from "./IconStrikeThrough";
|
|
1658
1662
|
export { IconStudioDisplay, default as IconStudioDisplayDefault, } from "./IconStudioDisplay";
|
|
1663
|
+
export { IconStudioDisplay1, default as IconStudioDisplay1Default, } from "./IconStudioDisplay1";
|
|
1659
1664
|
export { IconSubscript, default as IconSubscriptDefault, } from "./IconSubscript";
|
|
1660
1665
|
export { IconSubscriptionStar, default as IconSubscriptionStarDefault, } from "./IconSubscriptionStar";
|
|
1661
1666
|
export { IconSubscriptionTick1, default as IconSubscriptionTick1Default, } from "./IconSubscriptionTick1";
|