@central-icons-react-native/round-filled-radius-3-stroke-1 1.1.157 → 1.1.158
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/IconCodeTree/index.d.ts +4 -0
- package/IconCodeTree/index.js +2 -0
- package/IconCodeTree/index.js.map +1 -0
- package/IconCodeTree/index.mjs +2 -0
- package/IconCodeTree/index.mjs.map +1 -0
- package/IconRacingFlag/index.d.ts +4 -0
- package/IconRacingFlag/index.js +2 -0
- package/IconRacingFlag/index.js.map +1 -0
- package/IconRacingFlag/index.mjs +2 -0
- package/IconRacingFlag/index.mjs.map +1 -0
- package/IconReference/index.d.ts +4 -0
- package/IconReference/index.js +2 -0
- package/IconReference/index.js.map +1 -0
- package/IconReference/index.mjs +2 -0
- package/IconReference/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/index.d.ts +3 -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 +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var C=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!P.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(p=i(o,t))||p.enumerable});return r};var l=(r,o,e)=>(e=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(C({},"__esModule",{value:!0}),r);var h={};g(h,{IconCodeTree:()=>B,default:()=>d});module.exports=v(h);var n=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.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 f=require("react-native-svg"),B=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M4.5 3C4.77614 3 5 3.22386 5 3.5V6.5C5 7.88071 6.11929 9 7.5 9H14.042C14.2801 7.58118 15.5135 6.5 17 6.5C18.6569 6.5 20 7.84315 20 9.5C20 11.1569 18.6569 12.5 17 12.5C15.5135 12.5 14.2801 11.4188 14.042 10H7.5C6.52008 10 5.63534 9.59621 5 8.94727V14.5C5 15.8807 6.11929 17 7.5 17H14.042C14.2801 15.5812 15.5135 14.5 17 14.5C18.6569 14.5 20 15.8431 20 17.5C20 19.1569 18.6569 20.5 17 20.5C15.5135 20.5 14.2801 19.4188 14.042 18H7.5C5.567 18 4 16.433 4 14.5V3.5C4 3.22386 4.22386 3 4.5 3Z",fill:"currentColor"})),d=B;0&&(module.exports={IconCodeTree});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCodeTree/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 IconCodeTree: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 3C4.77614 3 5 3.22386 5 3.5V6.5C5 7.88071 6.11929 9 7.5 9H14.042C14.2801 7.58118 15.5135 6.5 17 6.5C18.6569 6.5 20 7.84315 20 9.5C20 11.1569 18.6569 12.5 17 12.5C15.5135 12.5 14.2801 11.4188 14.042 10H7.5C6.52008 10 5.63534 9.59621 5 8.94727V14.5C5 15.8807 6.11929 17 7.5 17H14.042C14.2801 15.5812 15.5135 14.5 17 14.5C18.6569 14.5 20 15.8431 20 17.5C20 19.1569 18.6569 20.5 17 20.5C15.5135 20.5 14.2801 19.4188 14.042 18H7.5C5.567 18 4 16.433 4 14.5V3.5C4 3.22386 4.22386 3 4.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCodeTree;\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,yeACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCodeTree_exports","__export","IconCodeTree","IconCodeTree_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCodeTree","props","React","CentralIconBase","IconCodeTree_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...C})=>n.createElement(p,{...C,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 a}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M4.5 3C4.77614 3 5 3.22386 5 3.5V6.5C5 7.88071 6.11929 9 7.5 9H14.042C14.2801 7.58118 15.5135 6.5 17 6.5C18.6569 6.5 20 7.84315 20 9.5C20 11.1569 18.6569 12.5 17 12.5C15.5135 12.5 14.2801 11.4188 14.042 10H7.5C6.52008 10 5.63534 9.59621 5 8.94727V14.5C5 15.8807 6.11929 17 7.5 17H14.042C14.2801 15.5812 15.5135 14.5 17 14.5C18.6569 14.5 20 15.8431 20 17.5C20 19.1569 18.6569 20.5 17 20.5C15.5135 20.5 14.2801 19.4188 14.042 18H7.5C5.567 18 4 16.433 4 14.5V3.5C4 3.22386 4.22386 3 4.5 3Z",fill:"currentColor"})),P=l;export{l as IconCodeTree,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCodeTree/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 IconCodeTree: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 3C4.77614 3 5 3.22386 5 3.5V6.5C5 7.88071 6.11929 9 7.5 9H14.042C14.2801 7.58118 15.5135 6.5 17 6.5C18.6569 6.5 20 7.84315 20 9.5C20 11.1569 18.6569 12.5 17 12.5C15.5135 12.5 14.2801 11.4188 14.042 10H7.5C6.52008 10 5.63534 9.59621 5 8.94727V14.5C5 15.8807 6.11929 17 7.5 17H14.042C14.2801 15.5812 15.5135 14.5 17 14.5C18.6569 14.5 20 15.8431 20 17.5C20 19.1569 18.6569 20.5 17 20.5C15.5135 20.5 14.2801 19.4188 14.042 18H7.5C5.567 18 4 16.433 4 14.5V3.5C4 3.22386 4.22386 3 4.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCodeTree;\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,yeACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCodeTree","props","React","CentralIconBase","IconCodeTree_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var e=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var V in r)e(o,V,{get:r[V],enumerable:!0})},p=(o,r,V,t)=>{if(r&&typeof r=="object"||typeof r=="function")for(let H of f(r))!u.call(o,H)&&H!==V&&e(o,H,{get:()=>r[H],enumerable:!(t=s(r,H))||t.enumerable});return o};var l=(o,r,V)=>(V=o!=null?c(i(o)):{},p(r||!o||!o.__esModule?e(V,"default",{value:o,enumerable:!0}):V,o)),B=o=>p(e({},"__esModule",{value:!0}),o);var d={};g(d,{IconRacingFlag:()=>m,default:()=>I});module.exports=B(d);var n=l(require("react"));var M=l(require("react")),Z=require("react-native-svg"),a=({children:o,size:r=24,...V})=>M.default.createElement(Z.Svg,{...V,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var C=require("react-native-svg"),m=o=>n.default.createElement(a,{...o},n.default.createElement(C.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 3C18.433 3 20 4.567 20 6.5V11.5C20 13.433 18.433 15 16.5 15H5V20.5C5 20.7761 4.77614 21 4.5 21C4.22386 21 4 20.7761 4 20.5V4.5C4 3.67157 4.67157 3 5.5 3H16.5ZM7 12V14H9V12H7ZM11 12V14H13V12H11ZM15 12V14H17V12H15ZM5 10V12H7V10H5ZM9 10V12H11V10H9ZM13 10V12H15V10H13ZM17 10V12H19V10H17ZM7 8V10H9V8H7ZM11 8V10H13V8H11ZM15 8V10H17V8H15ZM5 6V8H7V6H5ZM9 6V8H11V6H9ZM13 6V8H15V6H13ZM17 6V8H19V6H17ZM7 4V6H9V4H7ZM11 4V6H13V4H11ZM15 4V6H17V4H15Z",fill:"currentColor"})),I=m;0&&(module.exports={IconRacingFlag});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRacingFlag/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 IconRacingFlag: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.5 3C18.433 3 20 4.567 20 6.5V11.5C20 13.433 18.433 15 16.5 15H5V20.5C5 20.7761 4.77614 21 4.5 21C4.22386 21 4 20.7761 4 20.5V4.5C4 3.67157 4.67157 3 5.5 3H16.5ZM7 12V14H9V12H7ZM11 12V14H13V12H11ZM15 12V14H17V12H15ZM5 10V12H7V10H5ZM9 10V12H11V10H9ZM13 10V12H15V10H13ZM17 10V12H19V10H17ZM7 8V10H9V8H7ZM11 8V10H13V8H11ZM15 8V10H17V8H15ZM5 6V8H7V6H5ZM9 6V8H11V6H9ZM13 6V8H15V6H13ZM17 6V8H19V6H17ZM7 4V6H9V4H7ZM11 4V6H13V4H11ZM15 4V6H17V4H15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRacingFlag;\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,SAAS,UACT,SAAS,UACT,EAAE,4bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRacingFlag_exports","__export","IconRacingFlag","IconRacingFlag_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRacingFlag","props","React","CentralIconBase","IconRacingFlag_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import H from"react";import n from"react";import{Svg as t}from"react-native-svg";var V=({children:r,size:o=24,...e})=>n.createElement(t,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as p}from"react-native-svg";var l=r=>H.createElement(V,{...r},H.createElement(p,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 3C18.433 3 20 4.567 20 6.5V11.5C20 13.433 18.433 15 16.5 15H5V20.5C5 20.7761 4.77614 21 4.5 21C4.22386 21 4 20.7761 4 20.5V4.5C4 3.67157 4.67157 3 5.5 3H16.5ZM7 12V14H9V12H7ZM11 12V14H13V12H11ZM15 12V14H17V12H15ZM5 10V12H7V10H5ZM9 10V12H11V10H9ZM13 10V12H15V10H13ZM17 10V12H19V10H17ZM7 8V10H9V8H7ZM11 8V10H13V8H11ZM15 8V10H17V8H15ZM5 6V8H7V6H5ZM9 6V8H11V6H9ZM13 6V8H15V6H13ZM17 6V8H19V6H17ZM7 4V6H9V4H7ZM11 4V6H13V4H11ZM15 4V6H17V4H15Z",fill:"currentColor"})),u=l;export{l as IconRacingFlag,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRacingFlag/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 IconRacingFlag: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.5 3C18.433 3 20 4.567 20 6.5V11.5C20 13.433 18.433 15 16.5 15H5V20.5C5 20.7761 4.77614 21 4.5 21C4.22386 21 4 20.7761 4 20.5V4.5C4 3.67157 4.67157 3 5.5 3H16.5ZM7 12V14H9V12H7ZM11 12V14H13V12H11ZM15 12V14H17V12H15ZM5 10V12H7V10H5ZM9 10V12H11V10H9ZM13 10V12H15V10H13ZM17 10V12H19V10H17ZM7 8V10H9V8H7ZM11 8V10H13V8H11ZM15 8V10H17V8H15ZM5 6V8H7V6H5ZM9 6V8H11V6H9ZM13 6V8H15V6H13ZM17 6V8H19V6H17ZM7 4V6H9V4H7ZM11 4V6H13V4H11ZM15 4V6H17V4H15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRacingFlag;\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,SAAS,UACT,SAAS,UACT,EAAE,4bACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRacingFlag","props","React","CentralIconBase","IconRacingFlag_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of H(o))!d.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(t({},"__esModule",{value:!0}),r);var g={};v(g,{IconReference:()=>i,default:()=>P});module.exports=x(g);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.default.createElement(c.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 s=require("react-native-svg"),i=r=>C.default.createElement(f,{...r},C.default.createElement(s.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconReference});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconReference/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 IconReference: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReference;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,mYACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconReference_exports","__export","IconReference","IconReference_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconReference","props","React","CentralIconBase","IconReference_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>C.createElement(p,{...t,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 l}from"react-native-svg";var a=o=>n.createElement(e,{...o},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z",fill:"currentColor"})),d=a;export{a as IconReference,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconReference/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 IconReference: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReference;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,mYACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconReference","props","React","CentralIconBase","IconReference_default"]}
|
package/README.md
CHANGED
|
@@ -451,6 +451,7 @@ Below is a complete list of available icons:
|
|
|
451
451
|
- IconCodeLarge
|
|
452
452
|
- IconCodeLines
|
|
453
453
|
- IconCodeMedium
|
|
454
|
+
- IconCodeTree
|
|
454
455
|
- IconCommits
|
|
455
456
|
- IconConsole
|
|
456
457
|
- IconConsoleSimple
|
|
@@ -527,6 +528,7 @@ Below is a complete list of available icons:
|
|
|
527
528
|
- IconPaperPlaneTopRight
|
|
528
529
|
- IconPostcard1
|
|
529
530
|
- IconPostcard2
|
|
531
|
+
- IconReference
|
|
530
532
|
- IconTelephone
|
|
531
533
|
- IconVoiceAndVideo
|
|
532
534
|
|
|
@@ -1877,6 +1879,7 @@ Below is a complete list of available icons:
|
|
|
1877
1879
|
- IconPropeller
|
|
1878
1880
|
- IconPushTheButton
|
|
1879
1881
|
- IconPuzzle
|
|
1882
|
+
- IconRacingFlag
|
|
1880
1883
|
- IconReadingList
|
|
1881
1884
|
- IconReceiptionBell
|
|
1882
1885
|
- IconRescueRing
|
package/filtered-icons.json
CHANGED
|
@@ -7294,6 +7294,20 @@
|
|
|
7294
7294
|
"packageName": "round-filled-radius-3-stroke-1",
|
|
7295
7295
|
"componentName": "IconCodepen"
|
|
7296
7296
|
},
|
|
7297
|
+
{
|
|
7298
|
+
"category": "Code",
|
|
7299
|
+
"svg": "<path d=\"M4.5 3C4.77614 3 5 3.22386 5 3.5V6.5C5 7.88071 6.11929 9 7.5 9H14.042C14.2801 7.58118 15.5135 6.5 17 6.5C18.6569 6.5 20 7.84315 20 9.5C20 11.1569 18.6569 12.5 17 12.5C15.5135 12.5 14.2801 11.4188 14.042 10H7.5C6.52008 10 5.63534 9.59621 5 8.94727V14.5C5 15.8807 6.11929 17 7.5 17H14.042C14.2801 15.5812 15.5135 14.5 17 14.5C18.6569 14.5 20 15.8431 20 17.5C20 19.1569 18.6569 20.5 17 20.5C15.5135 20.5 14.2801 19.4188 14.042 18H7.5C5.567 18 4 16.433 4 14.5V3.5C4 3.22386 4.22386 3 4.5 3Z\" fill=\"currentColor\"/>",
|
|
7300
|
+
"iconName": "code-tree, file-tree",
|
|
7301
|
+
"variant": {
|
|
7302
|
+
"join": "round",
|
|
7303
|
+
"filled": "on",
|
|
7304
|
+
"radius": "3",
|
|
7305
|
+
"stroke": "1"
|
|
7306
|
+
},
|
|
7307
|
+
"createdAt": "2026-03-16T08:00:47.167404+00:00",
|
|
7308
|
+
"packageName": "round-filled-radius-3-stroke-1",
|
|
7309
|
+
"componentName": "IconCodeTree"
|
|
7310
|
+
},
|
|
7297
7311
|
{
|
|
7298
7312
|
"category": "Crypto",
|
|
7299
7313
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08555 3.61837C5.12838 4.92267 3 8.15413 3 12C3 15.8459 5.12838 19.0773 8.08555 20.3816C5.61492 18.588 4 15.4844 4 12C4 8.51562 5.61492 5.41205 8.08555 3.61837ZM13 22H11C5.97859 22 2 17.4691 2 12C2 6.5309 5.97859 2 11 2H13C18.0214 2 22 6.5309 22 12C22 17.4691 18.0214 22 13 22Z\" fill=\"currentColor\"/>",
|
|
@@ -19026,6 +19040,20 @@
|
|
|
19026
19040
|
"packageName": "round-filled-radius-3-stroke-1",
|
|
19027
19041
|
"componentName": "IconQuora"
|
|
19028
19042
|
},
|
|
19043
|
+
{
|
|
19044
|
+
"category": "Things",
|
|
19045
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.5 3C18.433 3 20 4.567 20 6.5V11.5C20 13.433 18.433 15 16.5 15H5V20.5C5 20.7761 4.77614 21 4.5 21C4.22386 21 4 20.7761 4 20.5V4.5C4 3.67157 4.67157 3 5.5 3H16.5ZM7 12V14H9V12H7ZM11 12V14H13V12H11ZM15 12V14H17V12H15ZM5 10V12H7V10H5ZM9 10V12H11V10H9ZM13 10V12H15V10H13ZM17 10V12H19V10H17ZM7 8V10H9V8H7ZM11 8V10H13V8H11ZM15 8V10H17V8H15ZM5 6V8H7V6H5ZM9 6V8H11V6H9ZM13 6V8H15V6H13ZM17 6V8H19V6H17ZM7 4V6H9V4H7ZM11 4V6H13V4H11ZM15 4V6H17V4H15Z\" fill=\"currentColor\"/>",
|
|
19046
|
+
"iconName": "racing-flag, target",
|
|
19047
|
+
"variant": {
|
|
19048
|
+
"join": "round",
|
|
19049
|
+
"filled": "on",
|
|
19050
|
+
"radius": "3",
|
|
19051
|
+
"stroke": "1"
|
|
19052
|
+
},
|
|
19053
|
+
"createdAt": "2026-03-16T08:00:47.167404+00:00",
|
|
19054
|
+
"packageName": "round-filled-radius-3-stroke-1",
|
|
19055
|
+
"componentName": "IconRacingFlag"
|
|
19056
|
+
},
|
|
19029
19057
|
{
|
|
19030
19058
|
"category": "Devices & Signals",
|
|
19031
19059
|
"svg": "<path d=\"M12.0303 2C14.3487 2 16.4833 2.78962 18.1816 4.11035L18.4639 3.8291C18.952 3.34131 19.7434 3.3412 20.2314 3.8291C20.7193 4.31717 20.7192 5.10855 20.2314 5.59668L13.9912 11.8359C13.9956 11.8901 14 11.9447 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C12.0922 10 12.1826 10.0084 12.2715 10.0205L13.6582 8.63379C13.1585 8.38725 12.5957 8.25 12 8.25C9.92893 8.25 8.25 9.92893 8.25 12C8.25 14.0711 9.92893 15.75 12 15.75C13.7829 15.75 15.2782 14.5046 15.6572 12.835C15.81 12.1618 16.4792 11.74 17.1523 11.8926C17.8256 12.0453 18.2475 12.7145 18.0947 13.3877C17.4631 16.1712 14.976 18.25 12 18.25C8.54822 18.25 5.75 15.4518 5.75 12C5.75 8.54822 8.54822 5.75 12 5.75C13.2883 5.75 14.4864 6.14201 15.4814 6.81055L16.3955 5.89648C15.1635 5.01788 13.6586 4.5 12.0303 4.5C7.87147 4.50012 4.50012 7.87147 4.5 12.0303C4.50012 16.1891 7.87147 19.5604 12.0303 19.5605C16.1892 19.5605 19.5604 16.1891 19.5605 12.0303C19.5605 11.4535 19.4959 10.8927 19.374 10.3555C19.2216 9.68253 19.6436 9.01327 20.3164 8.86035C20.9896 8.70758 21.6597 9.12949 21.8125 9.80273C21.9753 10.5203 22.0605 11.2661 22.0605 12.0303C22.0604 17.5699 17.5699 22.0605 12.0303 22.0605C6.49076 22.0604 2.00012 17.5698 2 12.0303C2.00012 6.49076 6.49076 2.00012 12.0303 2Z\" fill=\"currentColor\"/>",
|
|
@@ -19348,6 +19376,20 @@
|
|
|
19348
19376
|
"packageName": "round-filled-radius-3-stroke-1",
|
|
19349
19377
|
"componentName": "IconRedirectArrow"
|
|
19350
19378
|
},
|
|
19379
|
+
{
|
|
19380
|
+
"category": "Communication",
|
|
19381
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z\" fill=\"currentColor\"/>",
|
|
19382
|
+
"iconName": "reference, books, study, library, knowledge",
|
|
19383
|
+
"variant": {
|
|
19384
|
+
"join": "round",
|
|
19385
|
+
"filled": "on",
|
|
19386
|
+
"radius": "3",
|
|
19387
|
+
"stroke": "1"
|
|
19388
|
+
},
|
|
19389
|
+
"createdAt": "2026-03-16T08:00:47.167404+00:00",
|
|
19390
|
+
"packageName": "round-filled-radius-3-stroke-1",
|
|
19391
|
+
"componentName": "IconReference"
|
|
19392
|
+
},
|
|
19351
19393
|
{
|
|
19352
19394
|
"category": "Arrows",
|
|
19353
19395
|
"svg": "<path d=\"M20.5 9.49996C20.7761 9.49996 21 9.72382 21 9.99996V16.5C21 18.4329 19.433 20 17.5 20H4.70703L6.60352 21.8964C6.79876 22.0917 6.79877 22.4082 6.60352 22.6035C6.40826 22.7987 6.09174 22.7987 5.89648 22.6035L3.14648 19.8535C2.95123 19.6582 2.95124 19.3417 3.14648 19.1464L5.89648 16.3964C6.09175 16.2012 6.40825 16.2012 6.60352 16.3964C6.79876 16.5917 6.79877 16.9082 6.60352 17.1035L4.70703 19H17.5C18.8807 19 20 17.8807 20 16.5V9.99996C20 9.72382 20.2239 9.49996 20.5 9.49996Z\" fill=\"currentColor\"/><path d=\"M12 7.49996C12.2761 7.49996 12.5 7.72382 12.5 7.99996V11.5H16C16.2761 11.5 16.5 11.7238 16.5 12C16.5 12.2761 16.2761 12.5 16 12.5H12.5V16C12.5 16.2761 12.2761 16.5 12 16.5C11.7239 16.5 11.5 16.2761 11.5 16V12.5H8C7.72387 12.5 7.50002 12.2761 7.5 12C7.5 11.7238 7.72386 11.5 8 11.5H11.5V7.99996C11.5 7.72382 11.7239 7.49996 12 7.49996Z\" fill=\"currentColor\"/><path d=\"M17.3965 1.39645C17.5917 1.20118 17.9083 1.20118 18.1035 1.39645L20.8535 4.14645C21.0488 4.34171 21.0488 4.65822 20.8535 4.85348L18.1035 7.60348C17.9083 7.79872 17.5917 7.79872 17.3965 7.60348C17.2012 7.40822 17.2012 7.09171 17.3965 6.89645L19.293 4.99996H6.5C5.11929 4.99996 4 6.11925 4 7.49996V14C3.99998 14.2761 3.77613 14.5 3.5 14.5C3.22387 14.5 3.00002 14.2761 3 14V7.49996C3 5.56697 4.567 3.99996 6.5 3.99996H19.293L17.3965 2.10348C17.2012 1.90822 17.2012 1.59171 17.3965 1.39645Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -520,6 +520,7 @@ export type CentralIconName =
|
|
|
520
520
|
| "IconCodeLines"
|
|
521
521
|
| "IconCodeMedium"
|
|
522
522
|
| "IconCodepen"
|
|
523
|
+
| "IconCodeTree"
|
|
523
524
|
| "IconCoin1"
|
|
524
525
|
| "IconCoin2"
|
|
525
526
|
| "IconCoinLira"
|
|
@@ -1358,6 +1359,7 @@ export type CentralIconName =
|
|
|
1358
1359
|
| "IconQrCode"
|
|
1359
1360
|
| "IconQuickSearch"
|
|
1360
1361
|
| "IconQuora"
|
|
1362
|
+
| "IconRacingFlag"
|
|
1361
1363
|
| "IconRadar"
|
|
1362
1364
|
| "IconRadar1"
|
|
1363
1365
|
| "IconRadio"
|
|
@@ -1381,6 +1383,7 @@ export type CentralIconName =
|
|
|
1381
1383
|
| "IconReddit"
|
|
1382
1384
|
| "IconRedDotAward"
|
|
1383
1385
|
| "IconRedirectArrow"
|
|
1386
|
+
| "IconReference"
|
|
1384
1387
|
| "IconRemix"
|
|
1385
1388
|
| "IconRemoveBackground"
|
|
1386
1389
|
| "IconRemoveBackground2"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-3-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.158",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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": 1857,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
]
|
|
302
302
|
},
|
|
303
303
|
"Code": {
|
|
304
|
-
"count":
|
|
304
|
+
"count": 57,
|
|
305
305
|
"icons": [
|
|
306
306
|
"IconAgent",
|
|
307
307
|
"IconAgenticCoding",
|
|
@@ -333,6 +333,7 @@
|
|
|
333
333
|
"IconCodeLarge",
|
|
334
334
|
"IconCodeLines",
|
|
335
335
|
"IconCodeMedium",
|
|
336
|
+
"IconCodeTree",
|
|
336
337
|
"IconCommits",
|
|
337
338
|
"IconConsole",
|
|
338
339
|
"IconConsoleSimple",
|
|
@@ -362,7 +363,7 @@
|
|
|
362
363
|
]
|
|
363
364
|
},
|
|
364
365
|
"Communication": {
|
|
365
|
-
"count":
|
|
366
|
+
"count": 50,
|
|
366
367
|
"icons": [
|
|
367
368
|
"IconBook",
|
|
368
369
|
"IconBookSimple",
|
|
@@ -411,6 +412,7 @@
|
|
|
411
412
|
"IconPaperPlaneTopRight",
|
|
412
413
|
"IconPostcard1",
|
|
413
414
|
"IconPostcard2",
|
|
415
|
+
"IconReference",
|
|
414
416
|
"IconTelephone",
|
|
415
417
|
"IconVoiceAndVideo"
|
|
416
418
|
]
|
|
@@ -1722,7 +1724,7 @@
|
|
|
1722
1724
|
]
|
|
1723
1725
|
},
|
|
1724
1726
|
"Things": {
|
|
1725
|
-
"count":
|
|
1727
|
+
"count": 130,
|
|
1726
1728
|
"icons": [
|
|
1727
1729
|
"IconAnvil",
|
|
1728
1730
|
"IconApps",
|
|
@@ -1811,6 +1813,7 @@
|
|
|
1811
1813
|
"IconPropeller",
|
|
1812
1814
|
"IconPushTheButton",
|
|
1813
1815
|
"IconPuzzle",
|
|
1816
|
+
"IconRacingFlag",
|
|
1814
1817
|
"IconReadingList",
|
|
1815
1818
|
"IconReceiptionBell",
|
|
1816
1819
|
"IconRescueRing",
|
|
@@ -2577,6 +2580,7 @@
|
|
|
2577
2580
|
"IconCodeLines": "code-lines",
|
|
2578
2581
|
"IconCodeMedium": "code-medium, syntax, brackets, dev",
|
|
2579
2582
|
"IconCodepen": "codepen",
|
|
2583
|
+
"IconCodeTree": "code-tree, file-tree",
|
|
2580
2584
|
"IconCoin1": "coin-1, credits, money",
|
|
2581
2585
|
"IconCoin2": "coin-2, credits",
|
|
2582
2586
|
"IconCoinLira": "coin-lira, currency, money",
|
|
@@ -3415,6 +3419,7 @@
|
|
|
3415
3419
|
"IconQrCode": "qr-code, barcode, scan",
|
|
3416
3420
|
"IconQuickSearch": "quick-search, quick-menu, command-k",
|
|
3417
3421
|
"IconQuora": "quora",
|
|
3422
|
+
"IconRacingFlag": "racing-flag, target",
|
|
3418
3423
|
"IconRadar": "radar, control, check",
|
|
3419
3424
|
"IconRadar1": "radar, location, search",
|
|
3420
3425
|
"IconRadio": "radio, antenna, signal, broadcast, speaker",
|
|
@@ -3438,6 +3443,7 @@
|
|
|
3438
3443
|
"IconReddit": "reddit",
|
|
3439
3444
|
"IconRedDotAward": "red-dot-award",
|
|
3440
3445
|
"IconRedirectArrow": "redirect-arrow",
|
|
3446
|
+
"IconReference": "reference, books, study, library, knowledge",
|
|
3441
3447
|
"IconRemix": "remix, new-try, repeat",
|
|
3442
3448
|
"IconRemoveBackground": "remove-background",
|
|
3443
3449
|
"IconRemoveBackground2": "remove-background-2",
|
package/index.d.ts
CHANGED
|
@@ -518,6 +518,7 @@ export { IconCodeInsert, default as IconCodeInsertDefault, } from "./IconCodeIns
|
|
|
518
518
|
export { IconCodeLarge, default as IconCodeLargeDefault, } from "./IconCodeLarge";
|
|
519
519
|
export { IconCodeLines, default as IconCodeLinesDefault, } from "./IconCodeLines";
|
|
520
520
|
export { IconCodeMedium, default as IconCodeMediumDefault, } from "./IconCodeMedium";
|
|
521
|
+
export { IconCodeTree, default as IconCodeTreeDefault } from "./IconCodeTree";
|
|
521
522
|
export { IconCodepen, default as IconCodepenDefault } from "./IconCodepen";
|
|
522
523
|
export { IconCoin1, default as IconCoin1Default } from "./IconCoin1";
|
|
523
524
|
export { IconCoin2, default as IconCoin2Default } from "./IconCoin2";
|
|
@@ -1357,6 +1358,7 @@ export { IconQm3, default as IconQm3Default } from "./IconQm3";
|
|
|
1357
1358
|
export { IconQrCode, default as IconQrCodeDefault } from "./IconQrCode";
|
|
1358
1359
|
export { IconQuickSearch, default as IconQuickSearchDefault, } from "./IconQuickSearch";
|
|
1359
1360
|
export { IconQuora, default as IconQuoraDefault } from "./IconQuora";
|
|
1361
|
+
export { IconRacingFlag, default as IconRacingFlagDefault, } from "./IconRacingFlag";
|
|
1360
1362
|
export { IconRadar, default as IconRadarDefault } from "./IconRadar";
|
|
1361
1363
|
export { IconRadar1, default as IconRadar1Default } from "./IconRadar1";
|
|
1362
1364
|
export { IconRadio, default as IconRadioDefault } from "./IconRadio";
|
|
@@ -1380,6 +1382,7 @@ export { IconRecraft, default as IconRecraftDefault } from "./IconRecraft";
|
|
|
1380
1382
|
export { IconRedDotAward, default as IconRedDotAwardDefault, } from "./IconRedDotAward";
|
|
1381
1383
|
export { IconReddit, default as IconRedditDefault } from "./IconReddit";
|
|
1382
1384
|
export { IconRedirectArrow, default as IconRedirectArrowDefault, } from "./IconRedirectArrow";
|
|
1385
|
+
export { IconReference, default as IconReferenceDefault, } from "./IconReference";
|
|
1383
1386
|
export { IconRemix, default as IconRemixDefault } from "./IconRemix";
|
|
1384
1387
|
export { IconRemoveBackground, default as IconRemoveBackgroundDefault, } from "./IconRemoveBackground";
|
|
1385
1388
|
export { IconRemoveBackground2, default as IconRemoveBackground2Default, } from "./IconRemoveBackground2";
|