@central-icons-react-native/round-outlined-radius-2-stroke-1 1.0.3 → 1.0.5
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/IconCursorAi/index.d.ts +4 -0
- package/IconCursorAi/index.js +2 -0
- package/IconCursorAi/index.js.map +1 -0
- package/IconCursorAi/index.mjs +2 -0
- package/IconCursorAi/index.mjs.map +1 -0
- package/IconDispersion/index.d.ts +4 -0
- package/IconDispersion/index.js +2 -0
- package/IconDispersion/index.js.map +1 -0
- package/IconDispersion/index.mjs +2 -0
- package/IconDispersion/index.mjs.map +1 -0
- package/IconMarkup/index.d.ts +4 -0
- package/IconMarkup/index.js +2 -0
- package/IconMarkup/index.js.map +1 -0
- package/IconMarkup/index.mjs +2 -0
- package/IconMarkup/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +44 -2
- package/icons/index.d.ts +3 -0
- package/icons-index.json +12 -6
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +23 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!I.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=L(o,n))||s.enumerable});return r};var i=(r,o,e)=>(e=r!=null?f(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(t({},"__esModule",{value:!0}),r);var k={};x(k,{IconCursorAi:()=>l,default:()=>g});module.exports=P(k);var p=i(require("react"));var m=i(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(u.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 C=require("react-native-svg"),l=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=l;0&&(module.exports={IconCursorAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCursorAi_exports","__export","IconCursorAi","IconCursorAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconCursorAi,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var k=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,u)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!B.call(r,p)&&p!==e&&s(r,p,{get:()=>o[p],enumerable:!(u=m(o,p))||u.enumerable});return r};var c=(r,o,e)=>(e=r!=null?k(L(r)):{},C(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>C(s({},"__esModule",{value:!0}),r);var P={};I(P,{IconDispersion:()=>i,default:()=>M});module.exports=x(P);var n=c(require("react"));var l=c(require("react")),a=require("react-native-svg"),d=({children:r,size:o=24,...e})=>l.default.createElement(a.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 t=require("react-native-svg"),i=r=>n.default.createElement(d,{...r},n.default.createElement(t.Path,{d:"M12 3.5V20.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 12H8.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M15.5 12H21.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M15.5 7.5L20.5 3.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M20.5 20.5L15.5 16.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 16H8.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 8H8.5",stroke:"currentColor",strokeLinecap:"round"})),M=i;0&&(module.exports={IconDispersion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M15.5 7.5L20.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.5 20.5L15.5 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,EACnE,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClE,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,CACnE,EAIGE,EAAQJ","names":["IconDispersion_exports","__export","IconDispersion","IconDispersion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as u}from"react-native-svg";var t=({children:n,size:e=24,...p})=>s.createElement(u,{...p,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var C=n=>r.createElement(t,{...n},r.createElement(o,{d:"M12 3.5V20.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 12H8.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M15.5 12H21.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M15.5 7.5L20.5 3.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M20.5 20.5L15.5 16.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 16H8.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 8H8.5",stroke:"currentColor",strokeLinecap:"round"})),B=C;export{C as IconDispersion,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M15.5 7.5L20.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.5 20.5L15.5 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,CAAK,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,EACnEG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClEG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,CACnE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},a=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!B.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(C=L(o,e))||C.enumerable});return r};var u=(r,o,n)=>(n=r!=null?d(f(r)):{},a(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconMarkup:()=>m,default:()=>P});module.exports=x(g);var t=u(require("react"));var i=u(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...n})=>i.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),m=r=>t.default.createElement(l,{...r},t.default.createElement(s.Path,{d:"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M15.1243 16.6221L12.8867 20.4031",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=m;0&&(module.exports={IconMarkup});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/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 IconMarkup: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M15.1243 16.6221L12.8867 20.4031\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,sHACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4JACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconMarkup_exports","__export","IconMarkup","IconMarkup_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(e,{d:"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15.1243 16.6221L12.8867 20.4031",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconMarkup,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/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 IconMarkup: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M15.1243 16.6221L12.8867 20.4031\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,sHACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4JACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
package/README.md
CHANGED
|
@@ -147,6 +147,7 @@ Below is a complete list of available icons:
|
|
|
147
147
|
- IconBrain1
|
|
148
148
|
- IconBrain2
|
|
149
149
|
- IconBroomSparkle
|
|
150
|
+
- IconCursorAi
|
|
150
151
|
- IconCuteRobot
|
|
151
152
|
- IconEyeSparkle
|
|
152
153
|
- IconFortuneTellerBall
|
|
@@ -561,6 +562,7 @@ Below is a complete list of available icons:
|
|
|
561
562
|
- IconColorSwatch
|
|
562
563
|
- IconComponents
|
|
563
564
|
- IconCornerRadius
|
|
565
|
+
- IconDispersion
|
|
564
566
|
- IconEditBig
|
|
565
567
|
- IconEditSmall1
|
|
566
568
|
- IconEditSmall2
|
|
@@ -575,6 +577,7 @@ Below is a complete list of available icons:
|
|
|
575
577
|
- IconMarkdown
|
|
576
578
|
- IconMarker
|
|
577
579
|
- IconMarkerCircle
|
|
580
|
+
- IconMarkup
|
|
578
581
|
- IconPaintBrush
|
|
579
582
|
- IconPaintBucket
|
|
580
583
|
- IconPaintBucketDrop
|
package/filtered-icons.json
CHANGED
|
@@ -7196,6 +7196,20 @@
|
|
|
7196
7196
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
7197
7197
|
"componentName": "IconCursor3"
|
|
7198
7198
|
},
|
|
7199
|
+
{
|
|
7200
|
+
"category": "AI & Magic",
|
|
7201
|
+
"svg": "<path d=\"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7202
|
+
"iconName": "cursor-ai, agent, magic",
|
|
7203
|
+
"variant": {
|
|
7204
|
+
"join": "round",
|
|
7205
|
+
"filled": "off",
|
|
7206
|
+
"radius": "2",
|
|
7207
|
+
"stroke": "1"
|
|
7208
|
+
},
|
|
7209
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7210
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
7211
|
+
"componentName": "IconCursorAi"
|
|
7212
|
+
},
|
|
7199
7213
|
{
|
|
7200
7214
|
"category": "Arrows",
|
|
7201
7215
|
"svg": "<path d=\"M11 2.5V4.5M17.1569 4.84326L15.5962 6.40392M6.40381 15.5962L4.84315 17.1569M4.5 11H2.5M6.40381 6.40381L4.84315 4.84315M14.1182 21.0454L9.93329 10.5832C9.77003 10.1751 10.1751 9.77003 10.5832 9.93329L21.0454 14.1182C21.4327 14.2731 21.4712 14.8061 21.1102 15.0151L17.3654 17.1832C17.2898 17.227 17.227 17.2898 17.1832 17.3654L15.0151 21.1102C14.8061 21.4712 14.2731 21.4327 14.1182 21.0454Z\" stroke=\"currentColor\" stroke-width=\"1.04545\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -7672,6 +7686,20 @@
|
|
|
7672
7686
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
7673
7687
|
"componentName": "IconDishwasher"
|
|
7674
7688
|
},
|
|
7689
|
+
{
|
|
7690
|
+
"category": "Edit",
|
|
7691
|
+
"svg": "<path d=\"M12 3.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 12H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M15.5 12H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M15.5 7.5L20.5 3.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.5 20.5L15.5 16.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 16H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 8H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
7692
|
+
"iconName": "dispersion, refraction",
|
|
7693
|
+
"variant": {
|
|
7694
|
+
"join": "round",
|
|
7695
|
+
"filled": "off",
|
|
7696
|
+
"radius": "2",
|
|
7697
|
+
"stroke": "1"
|
|
7698
|
+
},
|
|
7699
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7700
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
7701
|
+
"componentName": "IconDispersion"
|
|
7702
|
+
},
|
|
7675
7703
|
{
|
|
7676
7704
|
"category": "Typography",
|
|
7677
7705
|
"svg": "<path d=\"M2.5 12H21.5M2.5 4.5H5.5M10.5 4.5H13.5M18.5 4.5H21.5M2.5 19.5H5.5M10.5 19.5H13.5M18.5 19.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12600,6 +12628,20 @@
|
|
|
12600
12628
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
12601
12629
|
"componentName": "IconMarkerCircle"
|
|
12602
12630
|
},
|
|
12631
|
+
{
|
|
12632
|
+
"category": "Edit",
|
|
12633
|
+
"svg": "<path d=\"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.1243 16.6221L12.8867 20.4031\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12634
|
+
"iconName": "markup, marker, highlight",
|
|
12635
|
+
"variant": {
|
|
12636
|
+
"join": "round",
|
|
12637
|
+
"filled": "off",
|
|
12638
|
+
"radius": "2",
|
|
12639
|
+
"stroke": "1"
|
|
12640
|
+
},
|
|
12641
|
+
"createdAt": "2025-09-09T06:30:34.762588+00:00",
|
|
12642
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
12643
|
+
"componentName": "IconMarkup"
|
|
12644
|
+
},
|
|
12603
12645
|
{
|
|
12604
12646
|
"category": "Things",
|
|
12605
12647
|
"svg": "<path d=\"M3.5 12.4999V5.42596C3.5 4.16833 4.64723 3.22599 5.89232 3.40316C10.0067 3.9886 13.9933 3.9886 18.1077 3.40316C19.3528 3.22599 20.5 4.16833 20.5 5.42596V12.4999C20.5 17.1944 16.6944 20.9999 12 20.9999C7.30558 20.9999 3.5 17.1944 3.5 12.4999Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M10.4931 10.6996C10.4929 10.6992 10.4935 10.6945 10.4958 10.6869C10.4945 10.6962 10.4934 10.7 10.4931 10.6996ZM10.7694 10.5003C10.771 10.5004 10.7718 10.5005 10.7718 10.5005L10.7694 10.5003ZM10.4773 10.3987C10.1928 10.2858 9.72785 10.1058 9.25 10.1058C8.77215 10.1058 8.30721 10.2858 8.02272 10.3987C8.13004 9.91185 8.60784 9.5 9.25 9.5C9.89216 9.5 10.37 9.91185 10.4773 10.3987ZM8.00689 10.6996C8.00663 10.7 8.00546 10.6962 8.00416 10.6869C8.0065 10.6945 8.00715 10.6992 8.00689 10.6996ZM7.72821 10.5005C7.72824 10.5005 7.72904 10.5004 7.73056 10.5003L7.72821 10.5005Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M16.5 10.6058C16.5 11.1421 16.2135 11.0298 15.7732 10.8572C15.4855 10.7444 15.132 10.6058 14.75 10.6058C14.368 10.6058 14.0145 10.7444 13.7268 10.8572C13.2865 11.0298 13 11.1421 13 10.6058C13 9.71896 13.7835 9 14.75 9C15.7165 9 16.5 9.71896 16.5 10.6058Z\" fill=\"currentColor\"/><path d=\"M15.1593 13.4157C13.0535 14.278 10.9477 14.278 8.8419 13.4157C8.39739 13.2337 7.93985 13.6717 8.2094 14.0692C10.2372 17.0602 13.764 17.0602 15.7918 14.0692C16.0614 13.6717 15.6038 13.2337 15.1593 13.4157Z\" fill=\"currentColor\"/>",
|
|
@@ -13163,7 +13205,7 @@
|
|
|
13163
13205
|
{
|
|
13164
13206
|
"category": "Communication",
|
|
13165
13207
|
"svg": "<path d=\"M12 5.75022L4.81193 4.61526C3.598 4.42358 2.5 5.36182 2.5 6.59078V16.5412C2.5 17.5254 3.21597 18.3633 4.18807 18.5168L12 19.7502M12 5.75022L19.1881 4.61526C20.402 4.42358 21.5 5.36182 21.5 6.59078V16.5412C21.5 17.5254 20.784 18.3633 19.8119 18.5168L12 19.7502M12 5.75022V19.7502\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
13166
|
-
"iconName": "newspaper-1, guide, info, faq",
|
|
13208
|
+
"iconName": "newspaper-1, guide, info, faq, book",
|
|
13167
13209
|
"variant": {
|
|
13168
13210
|
"join": "round",
|
|
13169
13211
|
"filled": "off",
|
|
@@ -13177,7 +13219,7 @@
|
|
|
13177
13219
|
{
|
|
13178
13220
|
"category": "Communication",
|
|
13179
13221
|
"svg": "<path d=\"M12 7.5C12 5.84315 13.3431 4.5 15 4.5H21C21.8284 4.5 22.5 5.17157 22.5 6V18C22.5 18.8284 21.8284 19.5 21 19.5H15.277C14.5966 19.5 13.9296 19.6642 13.3508 20.0219C12.772 20.3796 12.3043 20.8914 12 21.5M12 7.5C12 5.84315 10.6569 4.5 9 4.5H3C2.17157 4.5 1.5 5.17157 1.5 6V18C1.5 18.8284 2.17157 19.5 3 19.5H8.723C9.40341 19.5 10.0704 19.6642 10.6492 20.0219C11.228 20.3796 11.6957 20.8914 12 21.5M12 7.5V21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
13180
|
-
"iconName": "newspaper-2, guide, info, faq",
|
|
13222
|
+
"iconName": "newspaper-2, guide, info, faq, book",
|
|
13181
13223
|
"variant": {
|
|
13182
13224
|
"join": "round",
|
|
13183
13225
|
"filled": "off",
|
package/icons/index.d.ts
CHANGED
|
@@ -513,6 +513,7 @@ export type CentralIconName =
|
|
|
513
513
|
| "IconCursor1"
|
|
514
514
|
| "IconCursor2"
|
|
515
515
|
| "IconCursor3"
|
|
516
|
+
| "IconCursorAi"
|
|
516
517
|
| "IconCursorClick"
|
|
517
518
|
| "IconCursorList"
|
|
518
519
|
| "IconCurtain"
|
|
@@ -547,6 +548,7 @@ export type CentralIconName =
|
|
|
547
548
|
| "IconDirectorChair"
|
|
548
549
|
| "IconDiscord"
|
|
549
550
|
| "IconDishwasher"
|
|
551
|
+
| "IconDispersion"
|
|
550
552
|
| "IconDivider"
|
|
551
553
|
| "IconDollar"
|
|
552
554
|
| "IconDonut"
|
|
@@ -899,6 +901,7 @@ export type CentralIconName =
|
|
|
899
901
|
| "IconMarkdown"
|
|
900
902
|
| "IconMarker"
|
|
901
903
|
| "IconMarkerCircle"
|
|
904
|
+
| "IconMarkup"
|
|
902
905
|
| "IconMask"
|
|
903
906
|
| "IconMastadon"
|
|
904
907
|
| "IconMathBasic"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-1",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-1/IconHome';",
|
|
@@ -11,16 +11,17 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1523,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 33,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAppleIntelligenceIcon",
|
|
20
20
|
"IconBoxSparkle",
|
|
21
21
|
"IconBrain1",
|
|
22
22
|
"IconBrain2",
|
|
23
23
|
"IconBroomSparkle",
|
|
24
|
+
"IconCursorAi",
|
|
24
25
|
"IconCuteRobot",
|
|
25
26
|
"IconEyeSparkle",
|
|
26
27
|
"IconFortuneTellerBall",
|
|
@@ -428,7 +429,7 @@
|
|
|
428
429
|
]
|
|
429
430
|
},
|
|
430
431
|
"Edit": {
|
|
431
|
-
"count":
|
|
432
|
+
"count": 68,
|
|
432
433
|
"icons": [
|
|
433
434
|
"IconAddKeyframe",
|
|
434
435
|
"IconBezier",
|
|
@@ -455,6 +456,7 @@
|
|
|
455
456
|
"IconColorSwatch",
|
|
456
457
|
"IconComponents",
|
|
457
458
|
"IconCornerRadius",
|
|
459
|
+
"IconDispersion",
|
|
458
460
|
"IconEditBig",
|
|
459
461
|
"IconEditSmall1",
|
|
460
462
|
"IconEditSmall2",
|
|
@@ -469,6 +471,7 @@
|
|
|
469
471
|
"IconMarkdown",
|
|
470
472
|
"IconMarker",
|
|
471
473
|
"IconMarkerCircle",
|
|
474
|
+
"IconMarkup",
|
|
472
475
|
"IconPaintBrush",
|
|
473
476
|
"IconPaintBucket",
|
|
474
477
|
"IconPaintBucketDrop",
|
|
@@ -2224,6 +2227,7 @@
|
|
|
2224
2227
|
"IconCursor1": "cursor-1, arrow",
|
|
2225
2228
|
"IconCursor2": "cursor-2, arrow",
|
|
2226
2229
|
"IconCursor3": "cursor-3, arrow",
|
|
2230
|
+
"IconCursorAi": "cursor-ai, agent, magic",
|
|
2227
2231
|
"IconCursorClick": "cursor-click, arrow, clickbait",
|
|
2228
2232
|
"IconCursorList": "cursor-list, cursor, list",
|
|
2229
2233
|
"IconCurtain": "curtain, showtime, theater",
|
|
@@ -2258,6 +2262,7 @@
|
|
|
2258
2262
|
"IconDirectorChair": "director-chair, chair",
|
|
2259
2263
|
"IconDiscord": "discord",
|
|
2260
2264
|
"IconDishwasher": "dishwasher, clean",
|
|
2265
|
+
"IconDispersion": "dispersion, refraction",
|
|
2261
2266
|
"IconDivider": "divider, add-line",
|
|
2262
2267
|
"IconDollar": "dollar, currency, money, coin, USD",
|
|
2263
2268
|
"IconDonut": "donut",
|
|
@@ -2610,6 +2615,7 @@
|
|
|
2610
2615
|
"IconMarkdown": "markdown",
|
|
2611
2616
|
"IconMarker": "marker, highlight",
|
|
2612
2617
|
"IconMarkerCircle": "marker-circle, highlight",
|
|
2618
|
+
"IconMarkup": "markup, marker, highlight",
|
|
2613
2619
|
"IconMask": "mask, theatre",
|
|
2614
2620
|
"IconMastadon": "mastadon",
|
|
2615
2621
|
"IconMathBasic": "math-basic, calc",
|
|
@@ -2650,8 +2656,8 @@
|
|
|
2650
2656
|
"IconMute": "mute, sound-off",
|
|
2651
2657
|
"IconNailedIt": "nailed-it",
|
|
2652
2658
|
"IconNewspaper": "newspaper, News, paper",
|
|
2653
|
-
"IconNewspaper1": "newspaper-1, guide, info, faq",
|
|
2654
|
-
"IconNewspaper2": "newspaper-2, guide, info, faq",
|
|
2659
|
+
"IconNewspaper1": "newspaper-1, guide, info, faq, book",
|
|
2660
|
+
"IconNewspaper2": "newspaper-2, guide, info, faq, book",
|
|
2655
2661
|
"IconNewspaper3": "newspaper-3",
|
|
2656
2662
|
"IconNfc1": "nfc-1",
|
|
2657
2663
|
"IconNfc2": "nfc-2",
|
package/license-check.js
CHANGED
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -3598,6 +3598,13 @@
|
|
|
3598
3598
|
"iconName": "cursor-3, arrow",
|
|
3599
3599
|
"pathname": "src/IconCursor3"
|
|
3600
3600
|
},
|
|
3601
|
+
{
|
|
3602
|
+
"svg": "<Path d=\"M7.44134 4.03473L6.05286 3.51556C4.45568 2.91835 2.89165 4.46564 3.47165 6.06916L8.53369 20.0642C9.16957 21.8223 11.6551 21.8244 12.294 20.0674L14.2074 14.8057C14.3085 14.5277 14.5275 14.3087 14.8054 14.2076L20.0404 12.304C21.8004 11.664 21.7942 9.17263 20.0309 8.54144L18.3566 7.94207\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3603
|
+
"tags": "Path",
|
|
3604
|
+
"componentName": "IconCursorAi",
|
|
3605
|
+
"iconName": "cursor-ai, agent, magic",
|
|
3606
|
+
"pathname": "src/IconCursorAi"
|
|
3607
|
+
},
|
|
3601
3608
|
{
|
|
3602
3609
|
"svg": "<Path d=\"M11 2.5V4.5M17.1569 4.84326L15.5962 6.40392M6.40381 15.5962L4.84315 17.1569M4.5 11H2.5M6.40381 6.40381L4.84315 4.84315M14.1182 21.0454L9.93329 10.5832C9.77003 10.1751 10.1751 9.77003 10.5832 9.93329L21.0454 14.1182C21.4327 14.2731 21.4712 14.8061 21.1102 15.0151L17.3654 17.1832C17.2898 17.227 17.227 17.2898 17.1832 17.3654L15.0151 21.1102C14.8061 21.4712 14.2731 21.4327 14.1182 21.0454Z\" stroke=\"currentColor\" strokeWidth=\"1.04545\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3603
3610
|
"tags": "Path",
|
|
@@ -3836,6 +3843,13 @@
|
|
|
3836
3843
|
"iconName": "dishwasher, clean",
|
|
3837
3844
|
"pathname": "src/IconDishwasher"
|
|
3838
3845
|
},
|
|
3846
|
+
{
|
|
3847
|
+
"svg": "<Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M15.5 7.5L20.5 3.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M20.5 20.5L15.5 16.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/>",
|
|
3848
|
+
"tags": "Path",
|
|
3849
|
+
"componentName": "IconDispersion",
|
|
3850
|
+
"iconName": "dispersion, refraction",
|
|
3851
|
+
"pathname": "src/IconDispersion"
|
|
3852
|
+
},
|
|
3839
3853
|
{
|
|
3840
3854
|
"svg": "<Path d=\"M2.5 12H21.5M2.5 4.5H5.5M10.5 4.5H13.5M18.5 4.5H21.5M2.5 19.5H5.5M10.5 19.5H13.5M18.5 19.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3841
3855
|
"tags": "Path",
|
|
@@ -6300,6 +6314,13 @@
|
|
|
6300
6314
|
"iconName": "marker-circle,highlight",
|
|
6301
6315
|
"pathname": "src/IconMarkerCircle"
|
|
6302
6316
|
},
|
|
6317
|
+
{
|
|
6318
|
+
"svg": "<Path d=\"M20.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5V18.4259C3.5 18.0702 3.59489 17.7209 3.77488 17.414L7.01074 11.8975\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.1243 16.6221L12.8867 20.4031\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10.4211 3.5L6.86556 9.4757C6.29398 10.4363 6.62073 11.679 7.5909 12.2342L14.4795 16.1766C15.4314 16.7213 16.6444 16.3979 17.1987 15.4515L20.9997 8.96157\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
6319
|
+
"tags": "Path",
|
|
6320
|
+
"componentName": "IconMarkup",
|
|
6321
|
+
"iconName": "markup, marker, highlight",
|
|
6322
|
+
"pathname": "src/IconMarkup"
|
|
6323
|
+
},
|
|
6303
6324
|
{
|
|
6304
6325
|
"svg": "<Path d=\"M3.5 12.4999V5.42596C3.5 4.16833 4.64723 3.22599 5.89232 3.40316C10.0067 3.9886 13.9933 3.9886 18.1077 3.40316C19.3528 3.22599 20.5 4.16833 20.5 5.42596V12.4999C20.5 17.1944 16.6944 20.9999 12 20.9999C7.30558 20.9999 3.5 17.1944 3.5 12.4999Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Path d=\"M10.4931 10.6996C10.4929 10.6992 10.4935 10.6945 10.4958 10.6869C10.4945 10.6962 10.4934 10.7 10.4931 10.6996ZM10.7694 10.5003C10.771 10.5004 10.7718 10.5005 10.7718 10.5005L10.7694 10.5003ZM10.4773 10.3987C10.1928 10.2858 9.72785 10.1058 9.25 10.1058C8.77215 10.1058 8.30721 10.2858 8.02272 10.3987C8.13004 9.91185 8.60784 9.5 9.25 9.5C9.89216 9.5 10.37 9.91185 10.4773 10.3987ZM8.00689 10.6996C8.00663 10.7 8.00546 10.6962 8.00416 10.6869C8.0065 10.6945 8.00715 10.6992 8.00689 10.6996ZM7.72821 10.5005C7.72824 10.5005 7.72904 10.5004 7.73056 10.5003L7.72821 10.5005Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Path d=\"M16.5 10.6058C16.5 11.1421 16.2135 11.0298 15.7732 10.8572C15.4855 10.7444 15.132 10.6058 14.75 10.6058C14.368 10.6058 14.0145 10.7444 13.7268 10.8572C13.2865 11.0298 13 11.1421 13 10.6058C13 9.71896 13.7835 9 14.75 9C15.7165 9 16.5 9.71896 16.5 10.6058Z\" fill=\"currentColor\"/><Path d=\"M15.1593 13.4157C13.0535 14.278 10.9477 14.278 8.8419 13.4157C8.39739 13.2337 7.93985 13.6717 8.2094 14.0692C10.2372 17.0602 13.764 17.0602 15.7918 14.0692C16.0614 13.6717 15.6038 13.2337 15.1593 13.4157Z\" fill=\"currentColor\"/>",
|
|
6305
6326
|
"tags": "Path",
|
|
@@ -6584,14 +6605,14 @@
|
|
|
6584
6605
|
"svg": "<Path d=\"M12 5.75022L4.81193 4.61526C3.598 4.42358 2.5 5.36182 2.5 6.59078V16.5412C2.5 17.5254 3.21597 18.3633 4.18807 18.5168L12 19.7502M12 5.75022L19.1881 4.61526C20.402 4.42358 21.5 5.36182 21.5 6.59078V16.5412C21.5 17.5254 20.784 18.3633 19.8119 18.5168L12 19.7502M12 5.75022V19.7502\" stroke=\"currentColor\" strokeLinecap=\"round\"/>",
|
|
6585
6606
|
"tags": "Path",
|
|
6586
6607
|
"componentName": "IconNewspaper1",
|
|
6587
|
-
"iconName": "newspaper-1, guide, info, faq",
|
|
6608
|
+
"iconName": "newspaper-1, guide, info, faq, book",
|
|
6588
6609
|
"pathname": "src/IconNewspaper1"
|
|
6589
6610
|
},
|
|
6590
6611
|
{
|
|
6591
6612
|
"svg": "<Path d=\"M12 7.5C12 5.84315 13.3431 4.5 15 4.5H21C21.8284 4.5 22.5 5.17157 22.5 6V18C22.5 18.8284 21.8284 19.5 21 19.5H15.277C14.5966 19.5 13.9296 19.6642 13.3508 20.0219C12.772 20.3796 12.3043 20.8914 12 21.5M12 7.5C12 5.84315 10.6569 4.5 9 4.5H3C2.17157 4.5 1.5 5.17157 1.5 6V18C1.5 18.8284 2.17157 19.5 3 19.5H8.723C9.40341 19.5 10.0704 19.6642 10.6492 20.0219C11.228 20.3796 11.6957 20.8914 12 21.5M12 7.5V21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
6592
6613
|
"tags": "Path",
|
|
6593
6614
|
"componentName": "IconNewspaper2",
|
|
6594
|
-
"iconName": "newspaper-2, guide, info, faq",
|
|
6615
|
+
"iconName": "newspaper-2, guide, info, faq, book",
|
|
6595
6616
|
"pathname": "src/IconNewspaper2"
|
|
6596
6617
|
},
|
|
6597
6618
|
{
|