@central-icons-react-native/round-filled-radius-0-stroke-1.5 1.1.175 → 1.1.176
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/IconFlowerShape/index.d.ts +4 -0
- package/IconFlowerShape/index.js +2 -0
- package/IconFlowerShape/index.js.map +1 -0
- package/IconFlowerShape/index.mjs +2 -0
- package/IconFlowerShape/index.mjs.map +1 -0
- package/IconGamecontroller/index.d.ts +4 -0
- package/IconGamecontroller/index.js +2 -0
- package/IconGamecontroller/index.js.map +1 -0
- package/IconGamecontroller/index.mjs +2 -0
- package/IconGamecontroller/index.mjs.map +1 -0
- package/IconOldJoystick/index.d.ts +4 -0
- package/IconOldJoystick/index.js +2 -0
- package/IconOldJoystick/index.js.map +1 -0
- package/IconOldJoystick/index.mjs +2 -0
- package/IconOldJoystick/index.mjs.map +1 -0
- package/README.md +4 -1
- package/filtered-icons.json +43 -1
- package/icons/index.d.ts +3 -0
- package/icons-index.json +14 -8
- 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 n=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)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=i(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFlowerShape:()=>B,default:()=>v});module.exports=h(F);var p=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=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M12.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 2.03613Z",fill:"currentColor"})),v=B;0&&(module.exports={IconFlowerShape});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFlowerShape/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 IconFlowerShape: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 2.03613Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlowerShape;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2eACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFlowerShape_exports","__export","IconFlowerShape","IconFlowerShape_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFlowerShape","props","React","CentralIconBase","IconFlowerShape_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,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:"M12.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 2.03613Z",fill:"currentColor"})),P=l;export{l as IconFlowerShape,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFlowerShape/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 IconFlowerShape: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 2.03613Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlowerShape;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2eACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFlowerShape","props","React","CentralIconBase","IconFlowerShape_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!v.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=B(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?u(d(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>l(t({},"__esModule",{value:!0}),C);var H={};x(H,{IconGamecontroller:()=>i,default:()=>g});module.exports=P(H);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:C,size:o=24,...r})=>m.default.createElement(c.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),i=C=>n.default.createElement(s,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.2011 4C14.3445 4 15.2427 3.99983 15.9726 4.05371C16.7119 4.1083 17.3303 4.22099 17.9121 4.47266C18.8757 4.88952 19.707 5.56232 20.3154 6.41797C20.6827 6.9346 20.9225 7.51581 21.1298 8.22754C21.3346 8.9303 21.5206 9.80925 21.7587 10.9277L22.831 15.9609C23.1382 17.4034 22.4313 18.8716 21.1123 19.5312C19.486 20.3444 17.5086 19.6597 16.7343 18.0146L16.0214 16.5H7.97456L7.26167 18.0146C6.48741 19.6597 4.50998 20.3443 2.88374 19.5312C1.56471 18.8716 0.857833 17.4034 1.16499 15.9609L2.23726 10.9277C2.47543 9.80924 2.66143 8.93031 2.86617 8.22754C3.07353 7.5158 3.31328 6.9346 3.68062 6.41797C4.28903 5.56232 5.12034 4.88952 6.08394 4.47266C6.66572 4.221 7.28412 4.10829 8.02339 4.05371C8.7533 3.99984 9.65152 4 10.7949 4H13.2011ZM16.998 10.4502C16.3353 10.4502 15.7978 10.9876 15.7978 11.6504C15.7979 12.313 16.3353 12.8506 16.998 12.8506C17.6606 12.8505 18.1981 12.313 18.1982 11.6504C18.1982 10.9877 17.6607 10.4503 16.998 10.4502ZM8.498 7.75C8.08387 7.75009 7.748 8.08584 7.748 8.5V9.5498H6.6982C6.28405 9.5498 5.9483 9.88568 5.9482 10.2998C5.9482 10.714 6.28398 11.0498 6.6982 11.0498H7.748V12.0996C7.74801 12.5137 8.08389 12.8495 8.498 12.8496C8.91222 12.8496 9.24801 12.5138 9.248 12.0996V11.0498H10.2978C10.712 11.0498 11.0478 10.714 11.0478 10.2998C11.0477 9.88568 10.712 9.5498 10.2978 9.5498H9.248V8.5C9.248 8.08579 8.91222 7.74999 8.498 7.75ZM14.998 7.65039C14.3354 7.65039 13.798 8.187 13.7978 8.84961C13.7978 9.51235 14.3353 10.0498 14.998 10.0498C15.6607 10.0497 16.1982 9.51229 16.1982 8.84961C16.198 8.18707 15.6606 7.6505 14.998 7.65039Z",fill:"currentColor"})),g=i;0&&(module.exports={IconGamecontroller});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGamecontroller/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 IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.2011 4C14.3445 4 15.2427 3.99983 15.9726 4.05371C16.7119 4.1083 17.3303 4.22099 17.9121 4.47266C18.8757 4.88952 19.707 5.56232 20.3154 6.41797C20.6827 6.9346 20.9225 7.51581 21.1298 8.22754C21.3346 8.9303 21.5206 9.80925 21.7587 10.9277L22.831 15.9609C23.1382 17.4034 22.4313 18.8716 21.1123 19.5312C19.486 20.3444 17.5086 19.6597 16.7343 18.0146L16.0214 16.5H7.97456L7.26167 18.0146C6.48741 19.6597 4.50998 20.3443 2.88374 19.5312C1.56471 18.8716 0.857833 17.4034 1.16499 15.9609L2.23726 10.9277C2.47543 9.80924 2.66143 8.93031 2.86617 8.22754C3.07353 7.5158 3.31328 6.9346 3.68062 6.41797C4.28903 5.56232 5.12034 4.88952 6.08394 4.47266C6.66572 4.221 7.28412 4.10829 8.02339 4.05371C8.7533 3.99984 9.65152 4 10.7949 4H13.2011ZM16.998 10.4502C16.3353 10.4502 15.7978 10.9876 15.7978 11.6504C15.7979 12.313 16.3353 12.8506 16.998 12.8506C17.6606 12.8505 18.1981 12.313 18.1982 11.6504C18.1982 10.9877 17.6607 10.4503 16.998 10.4502ZM8.498 7.75C8.08387 7.75009 7.748 8.08584 7.748 8.5V9.5498H6.6982C6.28405 9.5498 5.9483 9.88568 5.9482 10.2998C5.9482 10.714 6.28398 11.0498 6.6982 11.0498H7.748V12.0996C7.74801 12.5137 8.08389 12.8495 8.498 12.8496C8.91222 12.8496 9.24801 12.5138 9.248 12.0996V11.0498H10.2978C10.712 11.0498 11.0478 10.714 11.0478 10.2998C11.0477 9.88568 10.712 9.5498 10.2978 9.5498H9.248V8.5C9.248 8.08579 8.91222 7.74999 8.498 7.75ZM14.998 7.65039C14.3354 7.65039 13.798 8.187 13.7978 8.84961C13.7978 9.51235 14.3353 10.0498 14.998 10.0498C15.6607 10.0497 16.1982 9.51229 16.1982 8.84961C16.198 8.18707 15.6606 7.6505 14.998 7.65039Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamecontroller;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,whDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGamecontroller_exports","__export","IconGamecontroller","IconGamecontroller_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGamecontroller","props","React","CentralIconBase","IconGamecontroller_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.2011 4C14.3445 4 15.2427 3.99983 15.9726 4.05371C16.7119 4.1083 17.3303 4.22099 17.9121 4.47266C18.8757 4.88952 19.707 5.56232 20.3154 6.41797C20.6827 6.9346 20.9225 7.51581 21.1298 8.22754C21.3346 8.9303 21.5206 9.80925 21.7587 10.9277L22.831 15.9609C23.1382 17.4034 22.4313 18.8716 21.1123 19.5312C19.486 20.3444 17.5086 19.6597 16.7343 18.0146L16.0214 16.5H7.97456L7.26167 18.0146C6.48741 19.6597 4.50998 20.3443 2.88374 19.5312C1.56471 18.8716 0.857833 17.4034 1.16499 15.9609L2.23726 10.9277C2.47543 9.80924 2.66143 8.93031 2.86617 8.22754C3.07353 7.5158 3.31328 6.9346 3.68062 6.41797C4.28903 5.56232 5.12034 4.88952 6.08394 4.47266C6.66572 4.221 7.28412 4.10829 8.02339 4.05371C8.7533 3.99984 9.65152 4 10.7949 4H13.2011ZM16.998 10.4502C16.3353 10.4502 15.7978 10.9876 15.7978 11.6504C15.7979 12.313 16.3353 12.8506 16.998 12.8506C17.6606 12.8505 18.1981 12.313 18.1982 11.6504C18.1982 10.9877 17.6607 10.4503 16.998 10.4502ZM8.498 7.75C8.08387 7.75009 7.748 8.08584 7.748 8.5V9.5498H6.6982C6.28405 9.5498 5.9483 9.88568 5.9482 10.2998C5.9482 10.714 6.28398 11.0498 6.6982 11.0498H7.748V12.0996C7.74801 12.5137 8.08389 12.8495 8.498 12.8496C8.91222 12.8496 9.24801 12.5138 9.248 12.0996V11.0498H10.2978C10.712 11.0498 11.0478 10.714 11.0478 10.2998C11.0477 9.88568 10.712 9.5498 10.2978 9.5498H9.248V8.5C9.248 8.08579 8.91222 7.74999 8.498 7.75ZM14.998 7.65039C14.3354 7.65039 13.798 8.187 13.7978 8.84961C13.7978 9.51235 14.3353 10.0498 14.998 10.0498C15.6607 10.0497 16.1982 9.51229 16.1982 8.84961C16.198 8.18707 15.6606 7.6505 14.998 7.65039Z",fill:"currentColor"})),v=a;export{a as IconGamecontroller,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGamecontroller/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 IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.2011 4C14.3445 4 15.2427 3.99983 15.9726 4.05371C16.7119 4.1083 17.3303 4.22099 17.9121 4.47266C18.8757 4.88952 19.707 5.56232 20.3154 6.41797C20.6827 6.9346 20.9225 7.51581 21.1298 8.22754C21.3346 8.9303 21.5206 9.80925 21.7587 10.9277L22.831 15.9609C23.1382 17.4034 22.4313 18.8716 21.1123 19.5312C19.486 20.3444 17.5086 19.6597 16.7343 18.0146L16.0214 16.5H7.97456L7.26167 18.0146C6.48741 19.6597 4.50998 20.3443 2.88374 19.5312C1.56471 18.8716 0.857833 17.4034 1.16499 15.9609L2.23726 10.9277C2.47543 9.80924 2.66143 8.93031 2.86617 8.22754C3.07353 7.5158 3.31328 6.9346 3.68062 6.41797C4.28903 5.56232 5.12034 4.88952 6.08394 4.47266C6.66572 4.221 7.28412 4.10829 8.02339 4.05371C8.7533 3.99984 9.65152 4 10.7949 4H13.2011ZM16.998 10.4502C16.3353 10.4502 15.7978 10.9876 15.7978 11.6504C15.7979 12.313 16.3353 12.8506 16.998 12.8506C17.6606 12.8505 18.1981 12.313 18.1982 11.6504C18.1982 10.9877 17.6607 10.4503 16.998 10.4502ZM8.498 7.75C8.08387 7.75009 7.748 8.08584 7.748 8.5V9.5498H6.6982C6.28405 9.5498 5.9483 9.88568 5.9482 10.2998C5.9482 10.714 6.28398 11.0498 6.6982 11.0498H7.748V12.0996C7.74801 12.5137 8.08389 12.8495 8.498 12.8496C8.91222 12.8496 9.24801 12.5138 9.248 12.0996V11.0498H10.2978C10.712 11.0498 11.0478 10.714 11.0478 10.2998C11.0477 9.88568 10.712 9.5498 10.2978 9.5498H9.248V8.5C9.248 8.08579 8.91222 7.74999 8.498 7.75ZM14.998 7.65039C14.3354 7.65039 13.798 8.187 13.7978 8.84961C13.7978 9.51235 14.3353 10.0498 14.998 10.0498C15.6607 10.0497 16.1982 9.51229 16.1982 8.84961C16.198 8.18707 15.6606 7.6505 14.998 7.65039Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamecontroller;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,whDACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGamecontroller","props","React","CentralIconBase","IconGamecontroller_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),V=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconOldJoystick:()=>i,default:()=>v});module.exports=V(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V14H16.5V11.75C16.5 11.3358 16.8358 11 17.25 11C17.6642 11 18 11.3358 18 11.75V14H20.25C20.6642 14 21 14.3358 21 14.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V14.75C3 14.3358 3.33579 14 3.75 14H11.25V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),v=i;0&&(module.exports={IconOldJoystick});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOldJoystick/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 IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V14H16.5V11.75C16.5 11.3358 16.8358 11 17.25 11C17.6642 11 18 11.3358 18 11.75V14H20.25C20.6642 14 21 14.3358 21 14.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V14.75C3 14.3358 3.33579 14 3.75 14H11.25V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOldJoystick;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2XACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconOldJoystick_exports","__export","IconOldJoystick","IconOldJoystick_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconOldJoystick","props","React","CentralIconBase","IconOldJoystick_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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=>e.createElement(t,{...o},e.createElement(a,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V14H16.5V11.75C16.5 11.3358 16.8358 11 17.25 11C17.6642 11 18 11.3358 18 11.75V14H20.25C20.6642 14 21 14.3358 21 14.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V14.75C3 14.3358 3.33579 14 3.75 14H11.25V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),P=l;export{l as IconOldJoystick,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOldJoystick/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 IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V14H16.5V11.75C16.5 11.3358 16.8358 11 17.25 11C17.6642 11 18 11.3358 18 11.75V14H20.25C20.6642 14 21 14.3358 21 14.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V14.75C3 14.3358 3.33579 14 3.75 14H11.25V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOldJoystick;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2XACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconOldJoystick","props","React","CentralIconBase","IconOldJoystick_default"]}
|
package/README.md
CHANGED
|
@@ -413,6 +413,7 @@ Below is a complete list of available icons:
|
|
|
413
413
|
- IconStore3
|
|
414
414
|
- IconStore4
|
|
415
415
|
- IconStores
|
|
416
|
+
- IconTower
|
|
416
417
|
|
|
417
418
|
### Clouds
|
|
418
419
|
|
|
@@ -931,6 +932,7 @@ Below is a complete list of available icons:
|
|
|
931
932
|
|
|
932
933
|
### Forms & Shapes
|
|
933
934
|
|
|
935
|
+
- IconFlowerShape
|
|
934
936
|
- IconFormCapsule
|
|
935
937
|
- IconFormCircle
|
|
936
938
|
- IconFormDiamond
|
|
@@ -975,6 +977,7 @@ Below is a complete list of available icons:
|
|
|
975
977
|
- IconDice5
|
|
976
978
|
- IconDice6
|
|
977
979
|
- IconDices
|
|
980
|
+
- IconGamecontroller
|
|
978
981
|
- IconGamepad
|
|
979
982
|
- IconGamepadControls
|
|
980
983
|
- IconGamepadControlsDown
|
|
@@ -986,6 +989,7 @@ Below is a complete list of available icons:
|
|
|
986
989
|
- IconGamepadControlsRoundRight
|
|
987
990
|
- IconGamepadControlsRoundUp
|
|
988
991
|
- IconGamepadControlsUp
|
|
992
|
+
- IconOldJoystick
|
|
989
993
|
- IconRoulette1
|
|
990
994
|
- IconRoulette2
|
|
991
995
|
- IconScratchCard
|
|
@@ -1966,7 +1970,6 @@ Below is a complete list of available icons:
|
|
|
1966
1970
|
- IconThread
|
|
1967
1971
|
- IconTicket
|
|
1968
1972
|
- IconToiletPaper
|
|
1969
|
-
- IconTower
|
|
1970
1973
|
- IconTreasure
|
|
1971
1974
|
- IconTrophy
|
|
1972
1975
|
- IconUnicorn
|
package/filtered-icons.json
CHANGED
|
@@ -11186,6 +11186,20 @@
|
|
|
11186
11186
|
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
11187
11187
|
"componentName": "IconFloppyDisk2"
|
|
11188
11188
|
},
|
|
11189
|
+
{
|
|
11190
|
+
"category": "Forms & Shapes",
|
|
11191
|
+
"svg": "<path d=\"M12.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 2.03613Z\" fill=\"currentColor\"/>",
|
|
11192
|
+
"iconName": "flower-shape",
|
|
11193
|
+
"variant": {
|
|
11194
|
+
"join": "round",
|
|
11195
|
+
"filled": "on",
|
|
11196
|
+
"radius": "0",
|
|
11197
|
+
"stroke": "1.5"
|
|
11198
|
+
},
|
|
11199
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
11200
|
+
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
11201
|
+
"componentName": "IconFlowerShape"
|
|
11202
|
+
},
|
|
11189
11203
|
{
|
|
11190
11204
|
"category": "Photography & Video",
|
|
11191
11205
|
"svg": "<path d=\"M3.75 3C3.33579 3 3 3.33579 3 3.75V8C3 8.41421 3.33579 8.75 3.75 8.75C4.16421 8.75 4.5 8.41421 4.5 8V4.5H8C8.41421 4.5 8.75 4.16421 8.75 3.75C8.75 3.33579 8.41421 3 8 3H3.75Z\" fill=\"currentColor\"/><path d=\"M16 3C15.5858 3 15.25 3.33579 15.25 3.75C15.25 4.16421 15.5858 4.5 16 4.5H19.5V8C19.5 8.41421 19.8358 8.75 20.25 8.75C20.6642 8.75 21 8.41421 21 8V3.75C21 3.33579 20.6642 3 20.25 3H16Z\" fill=\"currentColor\"/><path d=\"M4.5 16C4.5 15.5858 4.16421 15.25 3.75 15.25C3.33579 15.25 3 15.5858 3 16V20.25C3 20.6642 3.33579 21 3.75 21H8C8.41421 21 8.75 20.6642 8.75 20.25C8.75 19.8358 8.41421 19.5 8 19.5H4.5V16Z\" fill=\"currentColor\"/><path d=\"M21 16C21 15.5858 20.6642 15.25 20.25 15.25C19.8358 15.25 19.5 15.5858 19.5 16V19.5H16C15.5858 19.5 15.25 19.8358 15.25 20.25C15.25 20.6642 15.5858 21 16 21H20.25C20.6642 21 21 20.6642 21 20.25V16Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.6828 8.68965C12.5611 8.4219 12.2941 8.25 12 8.25C11.7059 8.25 11.4389 8.4219 11.3172 8.68965L8.56723 14.7396C8.39582 15.1167 8.56256 15.5614 8.93965 15.7328C9.31673 15.9042 9.76137 15.7374 9.93278 15.3604L10.4829 14.15H13.5171L14.0672 15.3604C14.2386 15.7374 14.6833 15.9042 15.0604 15.7328C15.4374 15.5614 15.6042 15.1167 15.4328 14.7396L12.6828 8.68965ZM12 10.8125L12.8352 12.65H11.1648L12 10.8125Z\" fill=\"currentColor\"/>",
|
|
@@ -12124,6 +12138,20 @@
|
|
|
12124
12138
|
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
12125
12139
|
"componentName": "IconGalaxy"
|
|
12126
12140
|
},
|
|
12141
|
+
{
|
|
12142
|
+
"category": "Gaming",
|
|
12143
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.2011 4C14.3445 4 15.2427 3.99983 15.9726 4.05371C16.7119 4.1083 17.3303 4.22099 17.9121 4.47266C18.8757 4.88952 19.707 5.56232 20.3154 6.41797C20.6827 6.9346 20.9225 7.51581 21.1298 8.22754C21.3346 8.9303 21.5206 9.80925 21.7587 10.9277L22.831 15.9609C23.1382 17.4034 22.4313 18.8716 21.1123 19.5312C19.486 20.3444 17.5086 19.6597 16.7343 18.0146L16.0214 16.5H7.97456L7.26167 18.0146C6.48741 19.6597 4.50998 20.3443 2.88374 19.5312C1.56471 18.8716 0.857833 17.4034 1.16499 15.9609L2.23726 10.9277C2.47543 9.80924 2.66143 8.93031 2.86617 8.22754C3.07353 7.5158 3.31328 6.9346 3.68062 6.41797C4.28903 5.56232 5.12034 4.88952 6.08394 4.47266C6.66572 4.221 7.28412 4.10829 8.02339 4.05371C8.7533 3.99984 9.65152 4 10.7949 4H13.2011ZM16.998 10.4502C16.3353 10.4502 15.7978 10.9876 15.7978 11.6504C15.7979 12.313 16.3353 12.8506 16.998 12.8506C17.6606 12.8505 18.1981 12.313 18.1982 11.6504C18.1982 10.9877 17.6607 10.4503 16.998 10.4502ZM8.498 7.75C8.08387 7.75009 7.748 8.08584 7.748 8.5V9.5498H6.6982C6.28405 9.5498 5.9483 9.88568 5.9482 10.2998C5.9482 10.714 6.28398 11.0498 6.6982 11.0498H7.748V12.0996C7.74801 12.5137 8.08389 12.8495 8.498 12.8496C8.91222 12.8496 9.24801 12.5138 9.248 12.0996V11.0498H10.2978C10.712 11.0498 11.0478 10.714 11.0478 10.2998C11.0477 9.88568 10.712 9.5498 10.2978 9.5498H9.248V8.5C9.248 8.08579 8.91222 7.74999 8.498 7.75ZM14.998 7.65039C14.3354 7.65039 13.798 8.187 13.7978 8.84961C13.7978 9.51235 14.3353 10.0498 14.998 10.0498C15.6607 10.0497 16.1982 9.51229 16.1982 8.84961C16.198 8.18707 15.6606 7.6505 14.998 7.65039Z\" fill=\"currentColor\"/>",
|
|
12144
|
+
"iconName": "gamecontroller, joystick, play",
|
|
12145
|
+
"variant": {
|
|
12146
|
+
"join": "round",
|
|
12147
|
+
"filled": "on",
|
|
12148
|
+
"radius": "0",
|
|
12149
|
+
"stroke": "1.5"
|
|
12150
|
+
},
|
|
12151
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
12152
|
+
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
12153
|
+
"componentName": "IconGamecontroller"
|
|
12154
|
+
},
|
|
12127
12155
|
{
|
|
12128
12156
|
"category": "Gaming",
|
|
12129
12157
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5.25C1.58579 5.25 1.25 5.58579 1.25 6V18C1.25 18.4142 1.58579 18.75 2 18.75H22C22.4142 18.75 22.75 18.4142 22.75 18V6C22.75 5.58579 22.4142 5.25 22 5.25H2ZM8 9C8.41421 9 8.75 9.33579 8.75 9.75V11.25H10.25C10.6642 11.25 11 11.5858 11 12C11 12.4142 10.6642 12.75 10.25 12.75H8.75V14.25C8.75 14.6642 8.41421 15 8 15C7.58579 15 7.25 14.6642 7.25 14.25V12.75H5.75C5.33579 12.75 5 12.4142 5 12C5 11.5858 5.33579 11.25 5.75 11.25H7.25V9.75C7.25 9.33579 7.58579 9 8 9ZM18 11.25C17.4477 11.25 17 10.8023 17 10.25C17 9.69772 17.4477 9.25 18 9.25C18.5523 9.25 19 9.69772 19 10.25C19 10.8023 18.5523 11.25 18 11.25ZM15 14.75C14.4477 14.75 14 14.3023 14 13.75C14 13.1977 14.4477 12.75 15 12.75C15.5523 12.75 16 13.1977 16 13.75C16 14.3023 15.5523 14.75 15 14.75Z\" fill=\"currentColor\"/>",
|
|
@@ -16884,6 +16912,20 @@
|
|
|
16884
16912
|
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
16885
16913
|
"componentName": "IconOffline"
|
|
16886
16914
|
},
|
|
16915
|
+
{
|
|
16916
|
+
"category": "Gaming",
|
|
16917
|
+
"svg": "<path d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V14H16.5V11.75C16.5 11.3358 16.8358 11 17.25 11C17.6642 11 18 11.3358 18 11.75V14H20.25C20.6642 14 21 14.3358 21 14.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V14.75C3 14.3358 3.33579 14 3.75 14H11.25V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3Z\" fill=\"currentColor\"/>",
|
|
16918
|
+
"iconName": "old-joystick, gamepad, gaming, control",
|
|
16919
|
+
"variant": {
|
|
16920
|
+
"join": "round",
|
|
16921
|
+
"filled": "on",
|
|
16922
|
+
"radius": "0",
|
|
16923
|
+
"stroke": "1.5"
|
|
16924
|
+
},
|
|
16925
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
16926
|
+
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
16927
|
+
"componentName": "IconOldJoystick"
|
|
16928
|
+
},
|
|
16887
16929
|
{
|
|
16888
16930
|
"category": "Devices & Signals",
|
|
16889
16931
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.75 1C5.16421 1 5.5 1.33579 5.5 1.75V3H19.25C19.6642 3 20 3.33579 20 3.75V17.25C20 19.8734 17.8734 22 15.25 22H8.75C6.12665 22 4 19.8734 4 17.25V1.75C4 1.33579 4.33579 1 4.75 1ZM8 7.75C8 7.33579 8.33579 7 8.75 7H15.25C15.6642 7 16 7.33579 16 7.75V13.25C16 13.6642 15.6642 14 15.25 14H8.75C8.33579 14 8 13.6642 8 13.25V7.75Z\" fill=\"currentColor\"/>",
|
|
@@ -24599,7 +24641,7 @@
|
|
|
24599
24641
|
"componentName": "IconTouchGrass"
|
|
24600
24642
|
},
|
|
24601
24643
|
{
|
|
24602
|
-
"category": "
|
|
24644
|
+
"category": "Building",
|
|
24603
24645
|
"svg": "<path d=\"M14.5024 21.25C14.5024 21.6642 14.1666 22 13.7524 22H10.2524C9.83828 21.9999 9.50241 21.6642 9.50241 21.25V16.5H14.5024V21.25Z\" fill=\"currentColor\"/><path d=\"M20.395 10.5C20.9254 10.5001 21.2881 11.0358 21.0913 11.5283L19.6909 15.0283C19.577 15.3131 19.3013 15.5 18.9946 15.5H5.01022C4.70361 15.4999 4.42781 15.313 4.31393 15.0283L2.91354 11.5283C2.7168 11.0358 3.08034 10.5 3.61081 10.5H20.395Z\" fill=\"currentColor\"/><path d=\"M15.2524 2C15.6666 2 16.0024 2.33579 16.0024 2.75C16.0024 3.16421 15.6666 3.5 15.2524 3.5H12.7524V5H18.8481C19.3909 5 19.7541 5.55872 19.5337 6.05469L18.0024 9.5H6.00241L4.47116 6.05469C4.25072 5.55872 4.61396 5 5.15671 5H11.2524V3.5H8.75241C8.33826 3.49993 8.00241 3.16417 8.00241 2.75C8.00241 2.33583 8.33826 2.00007 8.75241 2L15.2524 2Z\" fill=\"currentColor\"/>",
|
|
24604
24646
|
"iconName": "tower, terminal",
|
|
24605
24647
|
"variant": {
|
package/icons/index.d.ts
CHANGED
|
@@ -798,6 +798,7 @@ export type CentralIconName =
|
|
|
798
798
|
| "IconFlashcards"
|
|
799
799
|
| "IconFloppyDisk1"
|
|
800
800
|
| "IconFloppyDisk2"
|
|
801
|
+
| "IconFlowerShape"
|
|
801
802
|
| "IconFocusAuto"
|
|
802
803
|
| "IconFocusExposure"
|
|
803
804
|
| "IconFocusFlash"
|
|
@@ -865,6 +866,7 @@ export type CentralIconName =
|
|
|
865
866
|
| "IconFullscreen1"
|
|
866
867
|
| "IconFullscreen2"
|
|
867
868
|
| "IconGalaxy"
|
|
869
|
+
| "IconGamecontroller"
|
|
868
870
|
| "IconGamepad"
|
|
869
871
|
| "IconGamepadControls"
|
|
870
872
|
| "IconGamepadControlsDown"
|
|
@@ -1205,6 +1207,7 @@ export type CentralIconName =
|
|
|
1205
1207
|
| "IconNvidia"
|
|
1206
1208
|
| "IconOculus"
|
|
1207
1209
|
| "IconOffline"
|
|
1210
|
+
| "IconOldJoystick"
|
|
1208
1211
|
| "IconOldPhone"
|
|
1209
1212
|
| "IconOllama"
|
|
1210
1213
|
| "IconOmega"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.176",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-1.5/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": 1914,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 74,
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
]
|
|
267
267
|
},
|
|
268
268
|
"Building": {
|
|
269
|
-
"count":
|
|
269
|
+
"count": 24,
|
|
270
270
|
"icons": [
|
|
271
271
|
"IconBank",
|
|
272
272
|
"IconBank2",
|
|
@@ -290,7 +290,8 @@
|
|
|
290
290
|
"IconStore2",
|
|
291
291
|
"IconStore3",
|
|
292
292
|
"IconStore4",
|
|
293
|
-
"IconStores"
|
|
293
|
+
"IconStores",
|
|
294
|
+
"IconTower"
|
|
294
295
|
]
|
|
295
296
|
},
|
|
296
297
|
"Clouds": {
|
|
@@ -829,8 +830,9 @@
|
|
|
829
830
|
]
|
|
830
831
|
},
|
|
831
832
|
"Forms & Shapes": {
|
|
832
|
-
"count":
|
|
833
|
+
"count": 15,
|
|
833
834
|
"icons": [
|
|
835
|
+
"IconFlowerShape",
|
|
834
836
|
"IconFormCapsule",
|
|
835
837
|
"IconFormCircle",
|
|
836
838
|
"IconFormDiamond",
|
|
@@ -870,7 +872,7 @@
|
|
|
870
872
|
]
|
|
871
873
|
},
|
|
872
874
|
"Gaming": {
|
|
873
|
-
"count":
|
|
875
|
+
"count": 25,
|
|
874
876
|
"icons": [
|
|
875
877
|
"IconDice1",
|
|
876
878
|
"IconDice2",
|
|
@@ -879,6 +881,7 @@
|
|
|
879
881
|
"IconDice5",
|
|
880
882
|
"IconDice6",
|
|
881
883
|
"IconDices",
|
|
884
|
+
"IconGamecontroller",
|
|
882
885
|
"IconGamepad",
|
|
883
886
|
"IconGamepadControls",
|
|
884
887
|
"IconGamepadControlsDown",
|
|
@@ -890,6 +893,7 @@
|
|
|
890
893
|
"IconGamepadControlsRoundRight",
|
|
891
894
|
"IconGamepadControlsRoundUp",
|
|
892
895
|
"IconGamepadControlsUp",
|
|
896
|
+
"IconOldJoystick",
|
|
893
897
|
"IconRoulette1",
|
|
894
898
|
"IconRoulette2",
|
|
895
899
|
"IconScratchCard",
|
|
@@ -1774,7 +1778,7 @@
|
|
|
1774
1778
|
]
|
|
1775
1779
|
},
|
|
1776
1780
|
"Things": {
|
|
1777
|
-
"count":
|
|
1781
|
+
"count": 133,
|
|
1778
1782
|
"icons": [
|
|
1779
1783
|
"IconAnvil",
|
|
1780
1784
|
"IconApps",
|
|
@@ -1900,7 +1904,6 @@
|
|
|
1900
1904
|
"IconThread",
|
|
1901
1905
|
"IconTicket",
|
|
1902
1906
|
"IconToiletPaper",
|
|
1903
|
-
"IconTower",
|
|
1904
1907
|
"IconTreasure",
|
|
1905
1908
|
"IconTrophy",
|
|
1906
1909
|
"IconUnicorn",
|
|
@@ -2912,6 +2915,7 @@
|
|
|
2912
2915
|
"IconFlashcards": "flashcards, cards, pages",
|
|
2913
2916
|
"IconFloppyDisk1": "floppy-disk-1, save",
|
|
2914
2917
|
"IconFloppyDisk2": "floppy-disk-2, save",
|
|
2918
|
+
"IconFlowerShape": "flower-shape",
|
|
2915
2919
|
"IconFocusAuto": "focus-auto",
|
|
2916
2920
|
"IconFocusExposure": "focus-exposure",
|
|
2917
2921
|
"IconFocusFlash": "focus-flash",
|
|
@@ -2979,6 +2983,7 @@
|
|
|
2979
2983
|
"IconFullscreen1": "fullscreen-1",
|
|
2980
2984
|
"IconFullscreen2": "fullscreen-2",
|
|
2981
2985
|
"IconGalaxy": "galaxy, dark-hole",
|
|
2986
|
+
"IconGamecontroller": "gamecontroller, joystick, play",
|
|
2982
2987
|
"IconGamepad": "gamepad, gaming, joystick",
|
|
2983
2988
|
"IconGamepadControls": "gamepad-controls, joystick",
|
|
2984
2989
|
"IconGamepadControlsDown": "gamepad-controls-down, joystick",
|
|
@@ -3319,6 +3324,7 @@
|
|
|
3319
3324
|
"IconNvidia": "nvidia",
|
|
3320
3325
|
"IconOculus": "oculus",
|
|
3321
3326
|
"IconOffline": "offline, disconnect, energy",
|
|
3327
|
+
"IconOldJoystick": "old-joystick, gamepad, gaming, control",
|
|
3322
3328
|
"IconOldPhone": "old-phone",
|
|
3323
3329
|
"IconOllama": "ollama",
|
|
3324
3330
|
"IconOmega": "omega, special-character",
|
package/index.d.ts
CHANGED
|
@@ -797,6 +797,7 @@ export { IconFlag2, default as IconFlag2Default } from "./IconFlag2";
|
|
|
797
797
|
export { IconFlashcards, default as IconFlashcardsDefault, } from "./IconFlashcards";
|
|
798
798
|
export { IconFloppyDisk1, default as IconFloppyDisk1Default, } from "./IconFloppyDisk1";
|
|
799
799
|
export { IconFloppyDisk2, default as IconFloppyDisk2Default, } from "./IconFloppyDisk2";
|
|
800
|
+
export { IconFlowerShape, default as IconFlowerShapeDefault, } from "./IconFlowerShape";
|
|
800
801
|
export { IconFocusAuto, default as IconFocusAutoDefault, } from "./IconFocusAuto";
|
|
801
802
|
export { IconFocusExposure, default as IconFocusExposureDefault, } from "./IconFocusExposure";
|
|
802
803
|
export { IconFocusFlash, default as IconFocusFlashDefault, } from "./IconFocusFlash";
|
|
@@ -864,6 +865,7 @@ export { IconFullScreen, default as IconFullScreenDefault, } from "./IconFullScr
|
|
|
864
865
|
export { IconFullscreen1, default as IconFullscreen1Default, } from "./IconFullscreen1";
|
|
865
866
|
export { IconFullscreen2, default as IconFullscreen2Default, } from "./IconFullscreen2";
|
|
866
867
|
export { IconGalaxy, default as IconGalaxyDefault } from "./IconGalaxy";
|
|
868
|
+
export { IconGamecontroller, default as IconGamecontrollerDefault, } from "./IconGamecontroller";
|
|
867
869
|
export { IconGamepad, default as IconGamepadDefault } from "./IconGamepad";
|
|
868
870
|
export { IconGamepadControls, default as IconGamepadControlsDefault, } from "./IconGamepadControls";
|
|
869
871
|
export { IconGamepadControlsDown, default as IconGamepadControlsDownDefault, } from "./IconGamepadControlsDown";
|
|
@@ -1204,6 +1206,7 @@ export { IconNumbers123, default as IconNumbers123Default, } from "./IconNumbers
|
|
|
1204
1206
|
export { IconNvidia, default as IconNvidiaDefault } from "./IconNvidia";
|
|
1205
1207
|
export { IconOculus, default as IconOculusDefault } from "./IconOculus";
|
|
1206
1208
|
export { IconOffline, default as IconOfflineDefault } from "./IconOffline";
|
|
1209
|
+
export { IconOldJoystick, default as IconOldJoystickDefault, } from "./IconOldJoystick";
|
|
1207
1210
|
export { IconOldPhone, default as IconOldPhoneDefault } from "./IconOldPhone";
|
|
1208
1211
|
export { IconOllama, default as IconOllamaDefault } from "./IconOllama";
|
|
1209
1212
|
export { IconOmega, default as IconOmegaDefault } from "./IconOmega";
|