@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.120 → 1.1.122
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/IconEmojiLol/index.d.ts +4 -0
- package/IconEmojiLol/index.js +2 -0
- package/IconEmojiLol/index.js.map +1 -0
- package/IconEmojiLol/index.mjs +2 -0
- package/IconEmojiLol/index.mjs.map +1 -0
- package/IconSteeringWheel1/index.d.ts +4 -0
- package/IconSteeringWheel1/index.js +2 -0
- package/IconSteeringWheel1/index.js.map +1 -0
- package/IconSteeringWheel1/index.mjs +2 -0
- package/IconSteeringWheel1/index.mjs.map +1 -0
- package/README.md +5 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +10 -3
- package/index.d.ts +2 -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 +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=B(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var L={};x(L,{IconEmojiLol:()=>i,default:()=>g});module.exports=P(L);var p=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.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 f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.1836 12.6094C13.9434 13.7758 10.7797 14.3337 7.33594 14.3457C8.92706 20.1684 17.676 18.6033 17.1836 12.6094ZM5.88867 9.01562L7.71289 10.7246L6.58301 12.9551C8.13086 12.4651 9.7277 11.5304 10.668 10.2041C9.33079 9.27937 7.51076 8.94661 5.88867 9.01562ZM16.7217 7.10547C15.1739 7.59543 13.5779 8.53026 12.6377 9.85645C13.9749 10.7812 15.7949 11.1139 17.417 11.0449L15.5918 9.33594L16.7217 7.10547Z",fill:"currentColor"})),g=i;0&&(module.exports={IconEmojiLol});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconEmojiLol/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 IconEmojiLol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.1836 12.6094C13.9434 13.7758 10.7797 14.3337 7.33594 14.3457C8.92706 20.1684 17.676 18.6033 17.1836 12.6094ZM5.88867 9.01562L7.71289 10.7246L6.58301 12.9551C8.13086 12.4651 9.7277 11.5304 10.668 10.2041C9.33079 9.27937 7.51076 8.94661 5.88867 9.01562ZM16.7217 7.10547C15.1739 7.59543 13.5779 8.53026 12.6377 9.85645C13.9749 10.7812 15.7949 11.1139 17.417 11.0449L15.5918 9.33594L16.7217 7.10547Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiLol;\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,SAAS,UACT,SAAS,UACT,EAAE,kgBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconEmojiLol_exports","__export","IconEmojiLol","IconEmojiLol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmojiLol","props","React","CentralIconBase","IconEmojiLol_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:r,size:o=24,...n})=>p.createElement(C,{...n,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 l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.1836 12.6094C13.9434 13.7758 10.7797 14.3337 7.33594 14.3457C8.92706 20.1684 17.676 18.6033 17.1836 12.6094ZM5.88867 9.01562L7.71289 10.7246L6.58301 12.9551C8.13086 12.4651 9.7277 11.5304 10.668 10.2041C9.33079 9.27937 7.51076 8.94661 5.88867 9.01562ZM16.7217 7.10547C15.1739 7.59543 13.5779 8.53026 12.6377 9.85645C13.9749 10.7812 15.7949 11.1139 17.417 11.0449L15.5918 9.33594L16.7217 7.10547Z",fill:"currentColor"})),v=a;export{a as IconEmojiLol,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconEmojiLol/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 IconEmojiLol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.1836 12.6094C13.9434 13.7758 10.7797 14.3337 7.33594 14.3457C8.92706 20.1684 17.676 18.6033 17.1836 12.6094ZM5.88867 9.01562L7.71289 10.7246L6.58301 12.9551C8.13086 12.4651 9.7277 11.5304 10.668 10.2041C9.33079 9.27937 7.51076 8.94661 5.88867 9.01562ZM16.7217 7.10547C15.1739 7.59543 13.5779 8.53026 12.6377 9.85645C13.9749 10.7812 15.7949 11.1139 17.417 11.0449L15.5918 9.33594L16.7217 7.10547Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiLol;\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,SAAS,UACT,SAAS,UACT,EAAE,kgBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiLol","props","React","CentralIconBase","IconEmojiLol_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(n({},"__esModule",{value:!0}),r);var h={};v(h,{IconSteeringWheel1:()=>i,default:()=>P});module.exports=x(h);var C=a(require("react"));var m=a(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"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconSteeringWheel1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSteeringWheel1/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 IconSteeringWheel1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteeringWheel1;\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,yhBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSteeringWheel1_exports","__export","IconSteeringWheel1","IconSteeringWheel1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSteeringWheel1","props","React","CentralIconBase","IconSteeringWheel1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({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 l}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z",fill:"currentColor"})),g=a;export{a as IconSteeringWheel1,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSteeringWheel1/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 IconSteeringWheel1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteeringWheel1;\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,yhBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSteeringWheel1","props","React","CentralIconBase","IconSteeringWheel1_default"]}
|
package/README.md
CHANGED
|
@@ -711,6 +711,7 @@ Below is a complete list of available icons:
|
|
|
711
711
|
- IconEmojiAddReaction
|
|
712
712
|
- IconEmojiAngry
|
|
713
713
|
- IconEmojiGrinning
|
|
714
|
+
- IconEmojiLol
|
|
714
715
|
- IconEmojiMouthless
|
|
715
716
|
- IconEmojiNeutral
|
|
716
717
|
- IconEmojiProfile
|
|
@@ -1964,6 +1965,10 @@ Below is a complete list of available icons:
|
|
|
1964
1965
|
- IconVerticalAlignmentRight
|
|
1965
1966
|
- IconWrite
|
|
1966
1967
|
|
|
1968
|
+
### Vehicles
|
|
1969
|
+
|
|
1970
|
+
- IconSteeringWheel1
|
|
1971
|
+
|
|
1967
1972
|
### Vehicles & Aircrafts
|
|
1968
1973
|
|
|
1969
1974
|
- IconAirplane
|
package/filtered-icons.json
CHANGED
|
@@ -9310,6 +9310,20 @@
|
|
|
9310
9310
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
9311
9311
|
"componentName": "IconEmojiGrinning"
|
|
9312
9312
|
},
|
|
9313
|
+
{
|
|
9314
|
+
"category": "Emoji",
|
|
9315
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.1836 12.6094C13.9434 13.7758 10.7797 14.3337 7.33594 14.3457C8.92706 20.1684 17.676 18.6033 17.1836 12.6094ZM5.88867 9.01562L7.71289 10.7246L6.58301 12.9551C8.13086 12.4651 9.7277 11.5304 10.668 10.2041C9.33079 9.27937 7.51076 8.94661 5.88867 9.01562ZM16.7217 7.10547C15.1739 7.59543 13.5779 8.53026 12.6377 9.85645C13.9749 10.7812 15.7949 11.1139 17.417 11.0449L15.5918 9.33594L16.7217 7.10547Z\" fill=\"currentColor\"/>",
|
|
9316
|
+
"iconName": "emoji-lol, laugh, comedy, joke",
|
|
9317
|
+
"variant": {
|
|
9318
|
+
"join": "square",
|
|
9319
|
+
"filled": "on",
|
|
9320
|
+
"radius": "0",
|
|
9321
|
+
"stroke": "2"
|
|
9322
|
+
},
|
|
9323
|
+
"createdAt": "2026-02-06T17:01:06.255721+00:00",
|
|
9324
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
9325
|
+
"componentName": "IconEmojiLol"
|
|
9326
|
+
},
|
|
9313
9327
|
{
|
|
9314
9328
|
"category": "Emoji",
|
|
9315
9329
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\" fill=\"currentColor\"/>",
|
|
@@ -21238,6 +21252,20 @@
|
|
|
21238
21252
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
21239
21253
|
"componentName": "IconSteeringWheel"
|
|
21240
21254
|
},
|
|
21255
|
+
{
|
|
21256
|
+
"category": "Vehicles",
|
|
21257
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\" fill=\"currentColor\"/>",
|
|
21258
|
+
"iconName": "steering-wheel, autopilot, drive",
|
|
21259
|
+
"variant": {
|
|
21260
|
+
"join": "square",
|
|
21261
|
+
"filled": "on",
|
|
21262
|
+
"radius": "0",
|
|
21263
|
+
"stroke": "2"
|
|
21264
|
+
},
|
|
21265
|
+
"createdAt": "2026-02-09T16:00:58.002942+00:00",
|
|
21266
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
21267
|
+
"componentName": "IconSteeringWheel1"
|
|
21268
|
+
},
|
|
21241
21269
|
{
|
|
21242
21270
|
"category": "Arrows",
|
|
21243
21271
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.41436 3.00015L6.41436 5.00015H13.5002C17.6423 5.00015 21.0002 8.35802 21.0002 12.5002C21.0002 16.6423 17.6423 20.0002 13.5002 20.0002H5.00015V18.0002H13.5002C16.5377 18.0002 19.0002 15.5377 19.0002 12.5002C19.0002 9.46258 16.5377 7.00015 13.5002 7.00015H6.41436L8.41436 9.00015L7.00015 10.4144L2.58594 6.00015L7.00015 1.58594L8.41436 3.00015Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -664,6 +664,7 @@ export type CentralIconName =
|
|
|
664
664
|
| "IconEmojiAngry"
|
|
665
665
|
| "IconEmojiAstonished"
|
|
666
666
|
| "IconEmojiGrinning"
|
|
667
|
+
| "IconEmojiLol"
|
|
667
668
|
| "IconEmojiMouthless"
|
|
668
669
|
| "IconEmojiNeutral"
|
|
669
670
|
| "IconEmojiProfile"
|
|
@@ -1516,6 +1517,7 @@ export type CentralIconName =
|
|
|
1516
1517
|
| "IconSteakSteamLines"
|
|
1517
1518
|
| "IconSteam"
|
|
1518
1519
|
| "IconSteeringWheel"
|
|
1520
|
+
| "IconSteeringWheel1"
|
|
1519
1521
|
| "IconStepBack"
|
|
1520
1522
|
| "IconStepForwards"
|
|
1521
1523
|
| "IconSteveJobs"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.122",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/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": 1771,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 67,
|
|
@@ -597,12 +597,13 @@
|
|
|
597
597
|
]
|
|
598
598
|
},
|
|
599
599
|
"Emoji": {
|
|
600
|
-
"count":
|
|
600
|
+
"count": 19,
|
|
601
601
|
"icons": [
|
|
602
602
|
"IconAlien",
|
|
603
603
|
"IconEmojiAddReaction",
|
|
604
604
|
"IconEmojiAngry",
|
|
605
605
|
"IconEmojiGrinning",
|
|
606
|
+
"IconEmojiLol",
|
|
606
607
|
"IconEmojiMouthless",
|
|
607
608
|
"IconEmojiNeutral",
|
|
608
609
|
"IconEmojiProfile",
|
|
@@ -1903,6 +1904,10 @@
|
|
|
1903
1904
|
"IconWrite"
|
|
1904
1905
|
]
|
|
1905
1906
|
},
|
|
1907
|
+
"Vehicles": {
|
|
1908
|
+
"count": 1,
|
|
1909
|
+
"icons": ["IconSteeringWheel1"]
|
|
1910
|
+
},
|
|
1906
1911
|
"Vehicles & Aircrafts": {
|
|
1907
1912
|
"count": 35,
|
|
1908
1913
|
"icons": [
|
|
@@ -2634,6 +2639,7 @@
|
|
|
2634
2639
|
"IconEmojiAngry": "emoji-angry",
|
|
2635
2640
|
"IconEmojiAstonished": "emoji-astonished",
|
|
2636
2641
|
"IconEmojiGrinning": "emoji-grinning",
|
|
2642
|
+
"IconEmojiLol": "emoji-lol, laugh, comedy, joke",
|
|
2637
2643
|
"IconEmojiMouthless": "emoji-mouthless",
|
|
2638
2644
|
"IconEmojiNeutral": "emoji-neutral",
|
|
2639
2645
|
"IconEmojiProfile": "emoji-profile",
|
|
@@ -3486,6 +3492,7 @@
|
|
|
3486
3492
|
"IconSteakSteamLines": "steak-steam-lines, t-bone",
|
|
3487
3493
|
"IconSteam": "steam",
|
|
3488
3494
|
"IconSteeringWheel": "steering-wheel, control, navigate, boot",
|
|
3495
|
+
"IconSteeringWheel1": "steering-wheel, autopilot, drive",
|
|
3489
3496
|
"IconStepBack": "step-back, undo",
|
|
3490
3497
|
"IconStepForwards": "step-forwards, continue",
|
|
3491
3498
|
"IconSteveJobs": "steve-jobs, professor, innovation",
|
package/index.d.ts
CHANGED
|
@@ -663,6 +663,7 @@ export { IconEmojiAddReaction, default as IconEmojiAddReactionDefault, } from ".
|
|
|
663
663
|
export { IconEmojiAngry, default as IconEmojiAngryDefault, } from "./IconEmojiAngry";
|
|
664
664
|
export { IconEmojiAstonished, default as IconEmojiAstonishedDefault, } from "./IconEmojiAstonished";
|
|
665
665
|
export { IconEmojiGrinning, default as IconEmojiGrinningDefault, } from "./IconEmojiGrinning";
|
|
666
|
+
export { IconEmojiLol, default as IconEmojiLolDefault } from "./IconEmojiLol";
|
|
666
667
|
export { IconEmojiMouthless, default as IconEmojiMouthlessDefault, } from "./IconEmojiMouthless";
|
|
667
668
|
export { IconEmojiNeutral, default as IconEmojiNeutralDefault, } from "./IconEmojiNeutral";
|
|
668
669
|
export { IconEmojiProfile, default as IconEmojiProfileDefault, } from "./IconEmojiProfile";
|
|
@@ -1515,6 +1516,7 @@ export { IconSteak, default as IconSteakDefault } from "./IconSteak";
|
|
|
1515
1516
|
export { IconSteakSteamLines, default as IconSteakSteamLinesDefault, } from "./IconSteakSteamLines";
|
|
1516
1517
|
export { IconSteam, default as IconSteamDefault } from "./IconSteam";
|
|
1517
1518
|
export { IconSteeringWheel, default as IconSteeringWheelDefault, } from "./IconSteeringWheel";
|
|
1519
|
+
export { IconSteeringWheel1, default as IconSteeringWheel1Default, } from "./IconSteeringWheel1";
|
|
1518
1520
|
export { IconStepBack, default as IconStepBackDefault } from "./IconStepBack";
|
|
1519
1521
|
export { IconStepForwards, default as IconStepForwardsDefault, } from "./IconStepForwards";
|
|
1520
1522
|
export { IconSteveJobs, default as IconSteveJobsDefault, } from "./IconSteveJobs";
|