@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.266 → 1.1.267
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/IconAlbums2/index.d.ts +4 -0
- package/IconAlbums2/index.js +3 -0
- package/IconAlbums2/index.js.map +11 -0
- package/IconAlbums2/index.mjs +3 -0
- package/IconAlbums2/index.mjs.map +11 -0
- package/IconHomePlus/index.d.ts +4 -0
- package/IconHomePlus/index.js +3 -0
- package/IconHomePlus/index.js.map +11 -0
- package/IconHomePlus/index.mjs +3 -0
- package/IconHomePlus/index.mjs.map +11 -0
- package/README.md +2 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:b,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function i(o){return this[o]}var y,F,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?H(b(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!u.call(C,p))n(C,p,{get:i.bind(o,p),enumerable:!0});if(t)m.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of f(o))if(!u.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function M(o,r){this[o]=S.bind(null,r)}var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var Z={};d(Z,{CentralIconBase:()=>l});module.exports=I(Z);var v=B(require("react")),x=require("react-native-svg"),l=({children:o,size:r=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var w={};d(w,{default:()=>L,IconAlbums2:()=>g});module.exports=I(w);var a=B(require("react"));var P=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5491 11C20.2291 11 21.4309 12.6239 20.94 14.2305L19.4122 19.2305C19.091 20.2819 18.1206 21 17.0213 21H6.98166C5.88234 21 4.91202 20.2819 4.59078 19.2305L3.063 14.2305C2.57208 12.6239 3.77391 11 5.45388 11H18.5491ZM20.0015 7.5C20.0015 7.77614 19.7776 8 19.5015 8H4.50149C4.22535 8 4.00149 7.77614 4.00149 7.5C4.00149 7.22386 4.22535 7 4.50149 7H19.5015C19.7776 7 20.0015 7.22386 20.0015 7.5ZM19.0015 3.5C19.0015 3.77614 18.7776 4 18.5015 4H5.50149C5.22535 4 5.00149 3.77614 5.00149 3.5C5.00149 3.22386 5.22535 3 5.50149 3H18.5015C18.7776 3 19.0015 3.22386 19.0015 3.5Z",fill:"currentColor"}))},L=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=D918B9C4BC48261164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5491 11C20.2291 11 21.4309 12.6239 20.94 14.2305L19.4122 19.2305C19.091 20.2819 18.1206 21 17.0213 21H6.98166C5.88234 21 4.91202 20.2819 4.59078 19.2305L3.063 14.2305C2.57208 12.6239 3.77391 11 5.45388 11H18.5491ZM20.0015 7.5C20.0015 7.77614 19.7776 8 19.5015 8H4.50149C4.22535 8 4.00149 7.77614 4.00149 7.5C4.00149 7.22386 4.22535 7 4.50149 7H19.5015C19.7776 7 20.0015 7.22386 20.0015 7.5ZM19.0015 3.5C19.0015 3.77614 18.7776 4 18.5015 4H5.50149C5.22535 4 5.00149 3.77614 5.00149 3.5C5.00149 3.22386 5.22535 3 5.50149 3H18.5015C18.7776 3 19.0015 3.22386 19.0015 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAA+pB,EAA/pB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8jBAA8jB,KAAK,eAAc,CAAI,GAGzpB",
|
|
9
|
+
"debugId": "D918B9C4BC48261164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return C.createElement(p,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5491 11C20.2291 11 21.4309 12.6239 20.94 14.2305L19.4122 19.2305C19.091 20.2819 18.1206 21 17.0213 21H6.98166C5.88234 21 4.91202 20.2819 4.59078 19.2305L3.063 14.2305C2.57208 12.6239 3.77391 11 5.45388 11H18.5491ZM20.0015 7.5C20.0015 7.77614 19.7776 8 19.5015 8H4.50149C4.22535 8 4.00149 7.77614 4.00149 7.5C4.00149 7.22386 4.22535 7 4.50149 7H19.5015C19.7776 7 20.0015 7.22386 20.0015 7.5ZM19.0015 3.5C19.0015 3.77614 18.7776 4 18.5015 4H5.50149C5.22535 4 5.00149 3.77614 5.00149 3.5C5.00149 3.22386 5.22535 3 5.50149 3H18.5015C18.7776 3 19.0015 3.22386 19.0015 3.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=207E004F87DFAF7164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5491 11C20.2291 11 21.4309 12.6239 20.94 14.2305L19.4122 19.2305C19.091 20.2819 18.1206 21 17.0213 21H6.98166C5.88234 21 4.91202 20.2819 4.59078 19.2305L3.063 14.2305C2.57208 12.6239 3.77391 11 5.45388 11H18.5491ZM20.0015 7.5C20.0015 7.77614 19.7776 8 19.5015 8H4.50149C4.22535 8 4.00149 7.77614 4.00149 7.5C4.00149 7.22386 4.22535 7 4.50149 7H19.5015C19.7776 7 20.0015 7.22386 20.0015 7.5ZM19.0015 3.5C19.0015 3.77614 18.7776 4 18.5015 4H5.50149C5.22535 4 5.00149 3.77614 5.00149 3.5C5.00149 3.22386 5.22535 3 5.50149 3H18.5015C18.7776 3 19.0015 3.22386 19.0015 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAA+pB,EAA/pB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8jBAA8jB,KAAK,eAAc,CAAI,GAGzpB",
|
|
9
|
+
"debugId": "207E004F87DFAF7164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function i(o){return this[o]}var y,F,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?H(V(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!u.call(C,p))n(C,p,{get:i.bind(o,p),enumerable:!0});if(t)m.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of f(o))if(!u.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var P=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var w={};P(w,{CentralIconBase:()=>l});module.exports=I(w);var d=B(require("react")),v=require("react-native-svg"),l=({children:o,size:r=24,...e})=>{return d.default.createElement(v.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var L={};P(L,{default:()=>M,IconHomePlus:()=>g});module.exports=I(L);var a=B(require("react"));var x=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.7324 3.66455C11.5146 3.20467 12.4854 3.20467 13.2676 3.66455L19.7676 7.48877C20.5309 7.9378 20.9997 8.75754 21 9.64306V18.4995C21 19.8802 19.8807 20.9995 18.5 20.9995H5.5C4.11929 20.9995 3 19.8802 3 18.4995V9.64306C3.00032 8.75754 3.46915 7.9378 4.23242 7.48877L10.7324 3.66455ZM12 9.50048C11.7239 9.50048 11.5001 9.72445 11.5 10.0005V12.5005H9C8.72394 12.5005 8.50013 12.7245 8.5 13.0005C8.50026 13.2764 8.72402 13.5005 9 13.5005H11.5V16.0005C11.5003 16.2764 11.724 16.5005 12 16.5005C12.276 16.5005 12.4997 16.2764 12.5 16.0005V13.5005H15C15.276 13.5005 15.4997 13.2764 15.5 13.0005C15.4999 12.7245 15.2761 12.5005 15 12.5005H12.5V10.0005C12.4999 9.72445 12.2761 9.50048 12 9.50048Z",fill:"currentColor"}))},M=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=CF65B1C85D4B17AE64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.7324 3.66455C11.5146 3.20467 12.4854 3.20467 13.2676 3.66455L19.7676 7.48877C20.5309 7.9378 20.9997 8.75754 21 9.64306V18.4995C21 19.8802 19.8807 20.9995 18.5 20.9995H5.5C4.11929 20.9995 3 19.8802 3 18.4995V9.64306C3.00032 8.75754 3.46915 7.9378 4.23242 7.48877L10.7324 3.66455ZM12 9.50048C11.7239 9.50048 11.5001 9.72445 11.5 10.0005V12.5005H9C8.72394 12.5005 8.50013 12.7245 8.5 13.0005C8.50026 13.2764 8.72402 13.5005 9 13.5005H11.5V16.0005C11.5003 16.2764 11.724 16.5005 12 16.5005C12.276 16.5005 12.4997 16.2764 12.5 16.0005V13.5005H15C15.276 13.5005 15.4997 13.2764 15.5 13.0005C15.4999 12.7245 15.2761 12.5005 15 12.5005H12.5V10.0005C12.4999 9.72445 12.2761 9.50048 12 9.50048Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAoxB,EAApxB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mrBAAmrB,KAAK,eAAc,CAAI,GAG9wB",
|
|
9
|
+
"debugId": "CF65B1C85D4B17AE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return C.createElement(p,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.7324 3.66455C11.5146 3.20467 12.4854 3.20467 13.2676 3.66455L19.7676 7.48877C20.5309 7.9378 20.9997 8.75754 21 9.64306V18.4995C21 19.8802 19.8807 20.9995 18.5 20.9995H5.5C4.11929 20.9995 3 19.8802 3 18.4995V9.64306C3.00032 8.75754 3.46915 7.9378 4.23242 7.48877L10.7324 3.66455ZM12 9.50048C11.7239 9.50048 11.5001 9.72445 11.5 10.0005V12.5005H9C8.72394 12.5005 8.50013 12.7245 8.5 13.0005C8.50026 13.2764 8.72402 13.5005 9 13.5005H11.5V16.0005C11.5003 16.2764 11.724 16.5005 12 16.5005C12.276 16.5005 12.4997 16.2764 12.5 16.0005V13.5005H15C15.276 13.5005 15.4997 13.2764 15.5 13.0005C15.4999 12.7245 15.2761 12.5005 15 12.5005H12.5V10.0005C12.4999 9.72445 12.2761 9.50048 12 9.50048Z",fill:"currentColor"}))},v=a;export{v as default,a as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=1CE93708531C13DB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.7324 3.66455C11.5146 3.20467 12.4854 3.20467 13.2676 3.66455L19.7676 7.48877C20.5309 7.9378 20.9997 8.75754 21 9.64306V18.4995C21 19.8802 19.8807 20.9995 18.5 20.9995H5.5C4.11929 20.9995 3 19.8802 3 18.4995V9.64306C3.00032 8.75754 3.46915 7.9378 4.23242 7.48877L10.7324 3.66455ZM12 9.50048C11.7239 9.50048 11.5001 9.72445 11.5 10.0005V12.5005H9C8.72394 12.5005 8.50013 12.7245 8.5 13.0005C8.50026 13.2764 8.72402 13.5005 9 13.5005H11.5V16.0005C11.5003 16.2764 11.724 16.5005 12 16.5005C12.276 16.5005 12.4997 16.2764 12.5 16.0005V13.5005H15C15.276 13.5005 15.4997 13.2764 15.5 13.0005C15.4999 12.7245 15.2761 12.5005 15 12.5005H12.5V10.0005C12.4999 9.72445 12.2761 9.50048 12 9.50048Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAoxB,EAApxB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mrBAAmrB,KAAK,eAAc,CAAI,GAG9wB",
|
|
9
|
+
"debugId": "1CE93708531C13DB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -442,6 +442,7 @@ Below is a complete list of available icons:
|
|
|
442
442
|
- IconTower
|
|
443
443
|
- IconGoldenGateBridge
|
|
444
444
|
- IconHomeRoofDoor
|
|
445
|
+
- IconHomePlus
|
|
445
446
|
|
|
446
447
|
### Clouds
|
|
447
448
|
|
|
@@ -1888,6 +1889,7 @@ Below is a complete list of available icons:
|
|
|
1888
1889
|
- IconCd
|
|
1889
1890
|
- IconVoiceShare
|
|
1890
1891
|
- IconConductor
|
|
1892
|
+
- IconAlbums2
|
|
1891
1893
|
|
|
1892
1894
|
### Sports
|
|
1893
1895
|
|