@central-icons-react-native/round-outlined-radius-3-stroke-1 0.0.48 → 0.0.50
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/IconBanana/index.d.ts +4 -0
- package/IconBanana/index.js +2 -0
- package/IconBanana/index.js.map +1 -0
- package/IconBanana/index.mjs +2 -0
- package/IconBanana/index.mjs.map +1 -0
- package/IconMorningBrief/index.d.ts +4 -0
- package/IconMorningBrief/index.js +2 -0
- package/IconMorningBrief/index.js.map +1 -0
- package/IconMorningBrief/index.mjs +2 -0
- package/IconMorningBrief/index.mjs.map +1 -0
- package/IconRandom/index.d.ts +4 -0
- package/IconRandom/index.js +2 -0
- package/IconRandom/index.js.map +1 -0
- package/IconRandom/index.mjs +2 -0
- package/IconRandom/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -5
- package/package.json +1 -1
- package/tsx-icons.json +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var C=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!g.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(P(r)):{},s(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(C({},"__esModule",{value:!0}),r);var h={};i(h,{IconBanana:()=>u,default:()=>v});module.exports=d(h);var n=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),f=({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 p=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(p.Path,{d:"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367",stroke:"currentColor"})),v=u;0&&(module.exports={IconBanana});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBanana/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 IconBanana: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBanana;\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,uJACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oPACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0GACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconBanana_exports","__export","IconBanana","IconBanana_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBanana","props","React","CentralIconBase","IconBanana_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(a,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var s=t=>o.createElement(n,{...t},o.createElement(e,{d:"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13",stroke:"currentColor"}),o.createElement(e,{d:"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z",stroke:"currentColor"}),o.createElement(e,{d:"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367",stroke:"currentColor"})),g=s;export{s as IconBanana,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBanana/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 IconBanana: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBanana;\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,uJACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oPACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0GACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBanana","props","React","CentralIconBase","IconBanana_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 x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!B.call(r,p)&&p!==t&&s(r,p,{get:()=>o[p],enumerable:!(l=m(o,p))||l.enumerable});return r};var c=(r,o,t)=>(t=r!=null?k(x(r)):{},C(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>C(s({},"__esModule",{value:!0}),r);var g={};L(g,{IconMorningBrief:()=>a,default:()=>M});module.exports=I(g);var e=c(require("react"));var u=c(require("react")),i=require("react-native-svg"),d=({children:r,size:o=24,...t})=>u.default.createElement(i.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),a=r=>e.default.createElement(d,{...r},e.default.createElement(n.Path,{d:"M12 1.5V4.5",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M4.5752 4.5752L6.69652 6.69652",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M19.4243 4.5752L17.303 6.69652",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M7.5 16.5H18.5",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M7.5 20.5H15.5",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M1.5 12.5H22.5",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(n.Circle,{cx:"4.9502",cy:"16.5",r:"0.75",fill:"currentColor"}),e.default.createElement(n.Circle,{cx:"4.9502",cy:"20.5",r:"0.75",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5",stroke:"currentColor",strokeLinecap:"round"})),M=a;0&&(module.exports={IconMorningBrief});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMorningBrief/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 IconMorningBrief: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 1.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M4.5752 4.5752L6.69652 6.69652\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19.4243 4.5752L17.303 6.69652\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M7.5 16.5H18.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M7.5 20.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M1.5 12.5H22.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4.9502\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"4.9502\" cy=\"20.5\" r=\"0.75\" fill=\"currentColor\" />\n <Path\n d=\"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMorningBrief;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClE,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrE,EAAAA,QAAA,cAAC,UAAO,GAAG,SAAS,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,UAAO,GAAG,SAAS,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,sEACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconMorningBrief_exports","__export","IconMorningBrief","IconMorningBrief_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMorningBrief","props","React","CentralIconBase","IconMorningBrief_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import l from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:e=24,...s})=>l.createElement(C,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as p,Path as o}from"react-native-svg";var c=n=>r.createElement(t,{...n},r.createElement(o,{d:"M12 1.5V4.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M4.5752 4.5752L6.69652 6.69652",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M19.4243 4.5752L17.303 6.69652",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M7.5 16.5H18.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M7.5 20.5H15.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M1.5 12.5H22.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(p,{cx:"4.9502",cy:"16.5",r:"0.75",fill:"currentColor"}),r.createElement(p,{cx:"4.9502",cy:"20.5",r:"0.75",fill:"currentColor"}),r.createElement(o,{d:"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5",stroke:"currentColor",strokeLinecap:"round"})),L=c;export{c as IconMorningBrief,L as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMorningBrief/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 IconMorningBrief: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 1.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M4.5752 4.5752L6.69652 6.69652\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19.4243 4.5752L17.303 6.69652\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M7.5 16.5H18.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M7.5 20.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M1.5 12.5H22.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4.9502\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"4.9502\" cy=\"20.5\" r=\"0.75\" fill=\"currentColor\" />\n <Path\n d=\"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMorningBrief;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClEG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrEG,EAAA,cAACJ,EAAA,CAAO,GAAG,SAAS,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EAC3DI,EAAA,cAACJ,EAAA,CAAO,GAAG,SAAS,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EAC3DI,EAAA,cAACH,EAAA,CACC,EAAE,sEACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconMorningBrief","props","React","CentralIconBase","IconMorningBrief_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var n in r)p(o,n,{get:r[n],enumerable:!0})},i=(o,r,n,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of f(r))!B.call(o,e)&&e!==n&&p(o,e,{get:()=>r[e],enumerable:!(a=L(r,e))||a.enumerable});return o};var u=(o,r,n)=>(n=o!=null?d(k(o)):{},i(r||!o||!o.__esModule?p(n,"default",{value:o,enumerable:!0}):n,o)),x=o=>i(p({},"__esModule",{value:!0}),o);var P={};I(P,{IconRandom:()=>l,default:()=>M});module.exports=x(P);var t=u(require("react"));var m=u(require("react")),C=require("react-native-svg"),c=({children:o,size:r=24,...n})=>m.default.createElement(C.Svg,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),l=o=>t.default.createElement(c,{...o},t.default.createElement(s.Path,{d:"M12 17.5V21.5M12 2.5V6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M17.5 12L21.5 12M2.5 12H11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),M=l;0&&(module.exports={IconRandom});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRandom/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 IconRandom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 17.5V21.5M12 2.5V6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 12L21.5 12M2.5 12H11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRandom;\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,2BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconRandom_exports","__export","IconRandom","IconRandom_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRandom","props","React","CentralIconBase","IconRandom_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:o=24,...p})=>s.createElement(a,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var i=n=>r.createElement(t,{...n},r.createElement(e,{d:"M12 17.5V21.5M12 2.5V6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M17.5 12L21.5 12M2.5 12H11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=i;export{i as IconRandom,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRandom/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 IconRandom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 17.5V21.5M12 2.5V6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 12L21.5 12M2.5 12H11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRandom;\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,2BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRandom","props","React","CentralIconBase","IconRandom_default"]}
|
package/README.md
CHANGED
|
@@ -285,6 +285,7 @@ Below is a complete list of available icons:
|
|
|
285
285
|
- IconMinimize315
|
|
286
286
|
- IconMinimize45
|
|
287
287
|
- IconOngoing
|
|
288
|
+
- IconRandom
|
|
288
289
|
- IconShareArrowDown
|
|
289
290
|
- IconSquareArrowBottomRight
|
|
290
291
|
- IconSquareArrowCenter
|
|
@@ -700,6 +701,7 @@ Below is a complete list of available icons:
|
|
|
700
701
|
- IconAppleNewton
|
|
701
702
|
- IconApples
|
|
702
703
|
- IconAvocado
|
|
704
|
+
- IconBanana
|
|
703
705
|
- IconBirthdayCake
|
|
704
706
|
- IconBottle
|
|
705
707
|
- IconBreakfast
|
|
@@ -906,6 +908,7 @@ Below is a complete list of available icons:
|
|
|
906
908
|
- IconMathScientific
|
|
907
909
|
- IconMinusLarge
|
|
908
910
|
- IconMinusSmall
|
|
911
|
+
- IconMorningBrief
|
|
909
912
|
- IconPaperclip1
|
|
910
913
|
- IconPaperclip2
|
|
911
914
|
- IconPaperclip3
|
package/filtered-icons.json
CHANGED
|
@@ -2198,6 +2198,20 @@
|
|
|
2198
2198
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
2199
2199
|
"componentName": "IconBalloon"
|
|
2200
2200
|
},
|
|
2201
|
+
{
|
|
2202
|
+
"category": "Food",
|
|
2203
|
+
"svg": "<path d=\"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13\" stroke=\"currentColor\"/><path d=\"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z\" stroke=\"currentColor\"/><path d=\"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367\" stroke=\"currentColor\"/>",
|
|
2204
|
+
"iconName": "banana, fruit",
|
|
2205
|
+
"variant": {
|
|
2206
|
+
"join": "round",
|
|
2207
|
+
"filled": "off",
|
|
2208
|
+
"radius": "3",
|
|
2209
|
+
"stroke": "1"
|
|
2210
|
+
},
|
|
2211
|
+
"createdAt": "2025-08-22T08:30:44.654882+00:00",
|
|
2212
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
2213
|
+
"componentName": "IconBanana"
|
|
2214
|
+
},
|
|
2201
2215
|
{
|
|
2202
2216
|
"category": "Building",
|
|
2203
2217
|
"svg": "<path d=\"M19.5 9.50005V17.5001M15.5 17.5001V9.50005M4.5 9.50005V17.5001M8.5 17.5001V9.50005M18.5737 17.5001H5.42628C4.27592 17.5001 3.25463 18.2362 2.89086 19.3275C2.69857 19.9043 3.12794 20.5001 3.736 20.5001H20.264C20.8721 20.5001 21.3014 19.9043 21.1091 19.3275C20.7454 18.2362 19.7241 17.5001 18.5737 17.5001ZM20.2314 9.50005H3.76859C3.06797 9.50005 2.5 8.93209 2.5 8.23146C2.5 7.77878 2.74122 7.3604 3.13298 7.13359L10.4969 2.87027C11.4267 2.33198 12.5733 2.33198 13.5031 2.87027L20.867 7.13359C21.2588 7.3604 21.5 7.77878 21.5 8.23146C21.5 8.93209 20.932 9.50005 20.2314 9.50005Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
@@ -12754,6 +12768,20 @@
|
|
|
12754
12768
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
12755
12769
|
"componentName": "IconMoonStar"
|
|
12756
12770
|
},
|
|
12771
|
+
{
|
|
12772
|
+
"category": "Interface General",
|
|
12773
|
+
"svg": "<path d=\"M12 1.5V4.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M4.5752 4.5752L6.69652 6.69652\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M19.4243 4.5752L17.303 6.69652\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M7.5 16.5H18.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M7.5 20.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M1.5 12.5H22.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><circle cx=\"4.9502\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\"/><circle cx=\"4.9502\" cy=\"20.5\" r=\"0.75\" fill=\"currentColor\"/><path d=\"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
12774
|
+
"iconName": "morning-brief, daily-todo",
|
|
12775
|
+
"variant": {
|
|
12776
|
+
"join": "round",
|
|
12777
|
+
"filled": "off",
|
|
12778
|
+
"radius": "3",
|
|
12779
|
+
"stroke": "1"
|
|
12780
|
+
},
|
|
12781
|
+
"createdAt": "2025-08-22T08:30:44.654882+00:00",
|
|
12782
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
12783
|
+
"componentName": "IconMorningBrief"
|
|
12784
|
+
},
|
|
12757
12785
|
{
|
|
12758
12786
|
"category": "Things",
|
|
12759
12787
|
"svg": "<path d=\"M19 15L16.6217 6.67584C16.2537 5.38793 15.0765 4.5 13.7371 4.5H13.5M7.5 6.75L10.9643 11.575M9.5 6.5H6.5M16.75 8.75L5 15\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"19\" cy=\"15\" r=\"4.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"5\" cy=\"15\" r=\"4.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -15176,6 +15204,20 @@
|
|
|
15176
15204
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
15177
15205
|
"componentName": "IconRaisingHand5Finger"
|
|
15178
15206
|
},
|
|
15207
|
+
{
|
|
15208
|
+
"category": "Arrows",
|
|
15209
|
+
"svg": "<path d=\"M12 17.5V21.5M12 2.5V6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 12L21.5 12M2.5 12H11.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
15210
|
+
"iconName": "random, productivity, smart",
|
|
15211
|
+
"variant": {
|
|
15212
|
+
"join": "round",
|
|
15213
|
+
"filled": "off",
|
|
15214
|
+
"radius": "3",
|
|
15215
|
+
"stroke": "1"
|
|
15216
|
+
},
|
|
15217
|
+
"createdAt": "2025-08-20T08:30:23.126988+00:00",
|
|
15218
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
15219
|
+
"componentName": "IconRandom"
|
|
15220
|
+
},
|
|
15179
15221
|
{
|
|
15180
15222
|
"category": "Things",
|
|
15181
15223
|
"svg": "<path d=\"M0.5 9.5H2M23.5 9.5H22M14.2393 9.09584C13.5798 8.71678 12.8152 8.5 12 8.5C11.1848 8.5 10.4202 8.71678 9.76072 9.09584M10.5 12C10.5 14.4853 8.48528 16.5 6 16.5C3.51472 16.5 1.5 14.4853 1.5 12C1.5 9.51472 3.51472 7.5 6 7.5C8.48528 7.5 10.5 9.51472 10.5 12ZM22.5 12C22.5 14.4853 20.4853 16.5 18 16.5C15.5147 16.5 13.5 14.4853 13.5 12C13.5 9.51472 15.5147 7.5 18 7.5C20.4853 7.5 22.5 9.51472 22.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -156,6 +156,7 @@ export type CentralIconName =
|
|
|
156
156
|
| "IconBag"
|
|
157
157
|
| "IconBag2"
|
|
158
158
|
| "IconBalloon"
|
|
159
|
+
| "IconBanana"
|
|
159
160
|
| "IconBank"
|
|
160
161
|
| "IconBanknote1"
|
|
161
162
|
| "IconBanknote2"
|
|
@@ -910,6 +911,7 @@ export type CentralIconName =
|
|
|
910
911
|
| "IconMoneyHand"
|
|
911
912
|
| "IconMoon"
|
|
912
913
|
| "IconMoonStar"
|
|
914
|
+
| "IconMorningBrief"
|
|
913
915
|
| "IconMountainBike"
|
|
914
916
|
| "IconMouse"
|
|
915
917
|
| "IconMouseScrollDown"
|
|
@@ -1083,6 +1085,7 @@ export type CentralIconName =
|
|
|
1083
1085
|
| "IconRainyLight"
|
|
1084
1086
|
| "IconRaisingHand4Finger"
|
|
1085
1087
|
| "IconRaisingHand5Finger"
|
|
1088
|
+
| "IconRandom"
|
|
1086
1089
|
| "IconReadingList"
|
|
1087
1090
|
| "IconRear"
|
|
1088
1091
|
| "IconReceiptBill"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.50",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1491,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 32,
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"Arrows": {
|
|
68
|
-
"count":
|
|
68
|
+
"count": 108,
|
|
69
69
|
"icons": [
|
|
70
70
|
"IconArrow",
|
|
71
71
|
"IconArrowBottomTop",
|
|
@@ -163,6 +163,7 @@
|
|
|
163
163
|
"IconMinimize315",
|
|
164
164
|
"IconMinimize45",
|
|
165
165
|
"IconOngoing",
|
|
166
|
+
"IconRandom",
|
|
166
167
|
"IconShareArrowDown",
|
|
167
168
|
"IconSquareArrowBottomRight",
|
|
168
169
|
"IconSquareArrowCenter",
|
|
@@ -595,11 +596,12 @@
|
|
|
595
596
|
]
|
|
596
597
|
},
|
|
597
598
|
"Food": {
|
|
598
|
-
"count":
|
|
599
|
+
"count": 41,
|
|
599
600
|
"icons": [
|
|
600
601
|
"IconAppleNewton",
|
|
601
602
|
"IconApples",
|
|
602
603
|
"IconAvocado",
|
|
604
|
+
"IconBanana",
|
|
603
605
|
"IconBirthdayCake",
|
|
604
606
|
"IconBottle",
|
|
605
607
|
"IconBreakfast",
|
|
@@ -714,7 +716,7 @@
|
|
|
714
716
|
]
|
|
715
717
|
},
|
|
716
718
|
"Interface General": {
|
|
717
|
-
"count":
|
|
719
|
+
"count": 160,
|
|
718
720
|
"icons": [
|
|
719
721
|
"IconAnchor1",
|
|
720
722
|
"IconAnchor2",
|
|
@@ -814,6 +816,7 @@
|
|
|
814
816
|
"IconMathScientific",
|
|
815
817
|
"IconMinusLarge",
|
|
816
818
|
"IconMinusSmall",
|
|
819
|
+
"IconMorningBrief",
|
|
817
820
|
"IconPaperclip1",
|
|
818
821
|
"IconPaperclip2",
|
|
819
822
|
"IconPaperclip3",
|
|
@@ -1830,6 +1833,7 @@
|
|
|
1830
1833
|
"IconBag": "bag, luggage, buggage",
|
|
1831
1834
|
"IconBag2": "bag-2, luggage, buggage",
|
|
1832
1835
|
"IconBalloon": "balloon, birthday",
|
|
1836
|
+
"IconBanana": "banana, fruit",
|
|
1833
1837
|
"IconBank": "bank",
|
|
1834
1838
|
"IconBanknote1": "banknote-1, money, bill",
|
|
1835
1839
|
"IconBanknote2": "banknote-2, money, bill",
|
|
@@ -2584,6 +2588,7 @@
|
|
|
2584
2588
|
"IconMoneyHand": "money-hand, coins, pay",
|
|
2585
2589
|
"IconMoon": "moon, dark-mode, night",
|
|
2586
2590
|
"IconMoonStar": "moon-star, night",
|
|
2591
|
+
"IconMorningBrief": "morning-brief, daily-todo",
|
|
2587
2592
|
"IconMountainBike": "mountain-bike",
|
|
2588
2593
|
"IconMouse": "mouse",
|
|
2589
2594
|
"IconMouseScrollDown": "mouse-scroll-down",
|
|
@@ -2757,6 +2762,7 @@
|
|
|
2757
2762
|
"IconRainyLight": "rainy-light",
|
|
2758
2763
|
"IconRaisingHand4Finger": "raising-hand-4-finger, hey, hello",
|
|
2759
2764
|
"IconRaisingHand5Finger": "raising-hand-5-finger, hey, hello, high-five",
|
|
2765
|
+
"IconRandom": "random, productivity, smart",
|
|
2760
2766
|
"IconReadingList": "reading-list, glasses, steve-jobs",
|
|
2761
2767
|
"IconRear": "rear, front-back, change-cam, lens",
|
|
2762
2768
|
"IconReceiptBill": "receipt-bill, purchase, invoice",
|
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -1099,6 +1099,13 @@
|
|
|
1099
1099
|
"iconName": "balloon, birthday",
|
|
1100
1100
|
"pathname": "src/IconBalloon"
|
|
1101
1101
|
},
|
|
1102
|
+
{
|
|
1103
|
+
"svg": "<Path d=\"M14 9L15.9476 4.61843C16.2499 3.9383 16.9244 3.5 17.6687 3.5V3.5C18.6431 3.5 19.4643 4.24338 19.5142 5.21655C19.6529 7.92232 19.4501 10.2528 18.5 13\" stroke=\"currentColor\"/><Path d=\"M14.5722 12.8592C12.184 12.2279 9.97234 11.7035 7.5763 12.3135L6.5 10.6759C9.20252 8.23329 15.5656 6.81407 14.5722 12.8592ZM14.5722 12.8592C17.0974 15.6377 17.6837 17.3561 15.6485 20.5H18.3392C22.6942 17.2491 20.4166 11.1656 14.5722 12.8592Z\" stroke=\"currentColor\"/><Path d=\"M12.1667 12C10 15.0357 7.18632 16.7045 3.5 16.8788V19.0472C8.04085 22.1935 12.8421 19.7399 16.5 16.3367\" stroke=\"currentColor\"/>",
|
|
1104
|
+
"tags": "Path",
|
|
1105
|
+
"componentName": "IconBanana",
|
|
1106
|
+
"iconName": "banana, fruit",
|
|
1107
|
+
"pathname": "src/IconBanana"
|
|
1108
|
+
},
|
|
1102
1109
|
{
|
|
1103
1110
|
"svg": "<Path d=\"M19.5 9.50005V17.5001M15.5 17.5001V9.50005M4.5 9.50005V17.5001M8.5 17.5001V9.50005M18.5737 17.5001H5.42628C4.27592 17.5001 3.25463 18.2362 2.89086 19.3275C2.69857 19.9043 3.12794 20.5001 3.736 20.5001H20.264C20.8721 20.5001 21.3014 19.9043 21.1091 19.3275C20.7454 18.2362 19.7241 17.5001 18.5737 17.5001ZM20.2314 9.50005H3.76859C3.06797 9.50005 2.5 8.93209 2.5 8.23146C2.5 7.77878 2.74122 7.3604 3.13298 7.13359L10.4969 2.87027C11.4267 2.33198 12.5733 2.33198 13.5031 2.87027L20.867 7.13359C21.2588 7.3604 21.5 7.77878 21.5 8.23146C21.5 8.93209 20.932 9.50005 20.2314 9.50005Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>",
|
|
1104
1111
|
"tags": "Path",
|
|
@@ -6377,6 +6384,13 @@
|
|
|
6377
6384
|
"iconName": "moon-star, night",
|
|
6378
6385
|
"pathname": "src/IconMoonStar"
|
|
6379
6386
|
},
|
|
6387
|
+
{
|
|
6388
|
+
"svg": "<Path d=\"M12 1.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M4.5752 4.5752L6.69652 6.69652\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M19.4243 4.5752L17.303 6.69652\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M7.5 16.5H18.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M7.5 20.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M1.5 12.5H22.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Circle cx=\"4.9502\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\"/><Circle cx=\"4.9502\" cy=\"20.5\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M17 12.5C17 9.73858 14.7614 7.5 12 7.5C9.23858 7.5 7 9.73858 7 12.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/>",
|
|
6389
|
+
"tags": "Circle, Path",
|
|
6390
|
+
"componentName": "IconMorningBrief",
|
|
6391
|
+
"iconName": "morning-brief, daily-todo",
|
|
6392
|
+
"pathname": "src/IconMorningBrief"
|
|
6393
|
+
},
|
|
6380
6394
|
{
|
|
6381
6395
|
"svg": "<Path d=\"M19 15L16.6217 6.67584C16.2537 5.38793 15.0765 4.5 13.7371 4.5H13.5M7.5 6.75L10.9643 11.575M9.5 6.5H6.5M16.75 8.75L5 15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"19\" cy=\"15\" r=\"4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"5\" cy=\"15\" r=\"4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
6382
6396
|
"tags": "Circle, Path",
|
|
@@ -7588,6 +7602,13 @@
|
|
|
7588
7602
|
"iconName": "raising-hand-5-finger, hey, hello, high-five",
|
|
7589
7603
|
"pathname": "src/IconRaisingHand5Finger"
|
|
7590
7604
|
},
|
|
7605
|
+
{
|
|
7606
|
+
"svg": "<Path d=\"M12 17.5V21.5M12 2.5V6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.8893 15.8891L18.7177 18.7175M5.28271 5.28249L12 12L5.28294 18.7173M18.718 5.28223L15.8895 8.11065\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.5 12L21.5 12M2.5 12H11.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
7607
|
+
"tags": "Path",
|
|
7608
|
+
"componentName": "IconRandom",
|
|
7609
|
+
"iconName": "random, productivity, smart",
|
|
7610
|
+
"pathname": "src/IconRandom"
|
|
7611
|
+
},
|
|
7591
7612
|
{
|
|
7592
7613
|
"svg": "<Path d=\"M0.5 9.5H2M23.5 9.5H22M14.2393 9.09584C13.5798 8.71678 12.8152 8.5 12 8.5C11.1848 8.5 10.4202 8.71678 9.76072 9.09584M10.5 12C10.5 14.4853 8.48528 16.5 6 16.5C3.51472 16.5 1.5 14.4853 1.5 12C1.5 9.51472 3.51472 7.5 6 7.5C8.48528 7.5 10.5 9.51472 10.5 12ZM22.5 12C22.5 14.4853 20.4853 16.5 18 16.5C15.5147 16.5 13.5 14.4853 13.5 12C13.5 9.51472 15.5147 7.5 18 7.5C20.4853 7.5 22.5 9.51472 22.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/>",
|
|
7593
7614
|
"tags": "Path",
|