@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.214 → 1.1.215
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/IconCard/index.d.ts +4 -0
- package/IconCard/index.js +2 -0
- package/IconCard/index.js.map +1 -0
- package/IconCard/index.mjs +2 -0
- package/IconCard/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -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/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of f(o))!x.call(r,C)&&C!==e&&s(r,C,{get:()=>o[C],enumerable:!(p=m(o,C))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(h(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(s({},"__esModule",{value:!0}),r);var P={};B(P,{IconCard:()=>k,default:()=>L});module.exports=I(P);var n=d(require("react"));var u=d(require("react")),a=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.default.createElement(a.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 t=require("react-native-svg"),k=r=>n.default.createElement(c,{...r},n.default.createElement(t.Path,{d:"M5 4.6C5 4.03995 5 3.75992 5.10899 3.54601C5.20487 3.35785 5.35785 3.20487 5.54601 3.10899C5.75992 3 6.03995 3 6.6 3H17.4C17.9601 3 18.2401 3 18.454 3.10899C18.6422 3.20487 18.7951 3.35785 18.891 3.54601C19 3.75992 19 4.03995 19 4.6V19.4C19 19.9601 19 20.2401 18.891 20.454C18.7951 20.6422 18.6422 20.7951 18.454 20.891C18.2401 21 17.9601 21 17.4 21H6.6C6.03995 21 5.75992 21 5.54601 20.891C5.35785 20.7951 5.20487 20.6422 5.10899 20.454C5 20.2401 5 19.9601 5 19.4V4.6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"9",r:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),L=k;0&&(module.exports={IconCard});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 4.6C5 4.03995 5 3.75992 5.10899 3.54601C5.20487 3.35785 5.35785 3.20487 5.54601 3.10899C5.75992 3 6.03995 3 6.6 3H17.4C17.9601 3 18.2401 3 18.454 3.10899C18.6422 3.20487 18.7951 3.35785 18.891 3.54601C19 3.75992 19 4.03995 19 4.6V19.4C19 19.9601 19 20.2401 18.891 20.454C18.7951 20.6422 18.6422 20.7951 18.454 20.891C18.2401 21 17.9601 21 17.4 21H6.6C6.03995 21 5.75992 21 5.54601 20.891C5.35785 20.7951 5.20487 20.6422 5.10899 20.454C5 20.2401 5 19.9601 5 19.4V4.6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 17H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\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,cAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wdACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,IACH,EAAE,IACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCard_exports","__export","IconCard","IconCard_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCard","props","React","CentralIconBase","IconCard_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...C})=>s.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as i,Path as n}from"react-native-svg";var d=e=>o.createElement(t,{...e},o.createElement(n,{d:"M5 4.6C5 4.03995 5 3.75992 5.10899 3.54601C5.20487 3.35785 5.35785 3.20487 5.54601 3.10899C5.75992 3 6.03995 3 6.6 3H17.4C17.9601 3 18.2401 3 18.454 3.10899C18.6422 3.20487 18.7951 3.35785 18.891 3.54601C19 3.75992 19 4.03995 19 4.6V19.4C19 19.9601 19 20.2401 18.891 20.454C18.7951 20.6422 18.6422 20.7951 18.454 20.891C18.2401 21 17.9601 21 17.4 21H6.6C6.03995 21 5.75992 21 5.54601 20.891C5.35785 20.7951 5.20487 20.6422 5.10899 20.454C5 20.2401 5 19.9601 5 19.4V4.6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(i,{cx:"12",cy:"9",r:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=d;export{d as IconCard,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 4.6C5 4.03995 5 3.75992 5.10899 3.54601C5.20487 3.35785 5.35785 3.20487 5.54601 3.10899C5.75992 3 6.03995 3 6.6 3H17.4C17.9601 3 18.2401 3 18.454 3.10899C18.6422 3.20487 18.7951 3.35785 18.891 3.54601C19 3.75992 19 4.03995 19 4.6V19.4C19 19.9601 19 20.2401 18.891 20.454C18.7951 20.6422 18.6422 20.7951 18.454 20.891C18.2401 21 17.9601 21 17.4 21H6.6C6.03995 21 5.75992 21 5.54601 20.891C5.35785 20.7951 5.20487 20.6422 5.10899 20.454C5 20.2401 5 19.9601 5 19.4V4.6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 17H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wdACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,IACH,EAAE,IACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconCard","props","React","CentralIconBase","IconCard_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -5768,6 +5768,20 @@
|
|
|
5768
5768
|
"packageName": "round-outlined-radius-1-stroke-2",
|
|
5769
5769
|
"componentName": "IconCar9Ev"
|
|
5770
5770
|
},
|
|
5771
|
+
{
|
|
5772
|
+
"category": "Interface General",
|
|
5773
|
+
"svg": "<path d=\"M5 4.6C5 4.03995 5 3.75992 5.10899 3.54601C5.20487 3.35785 5.35785 3.20487 5.54601 3.10899C5.75992 3 6.03995 3 6.6 3H17.4C17.9601 3 18.2401 3 18.454 3.10899C18.6422 3.20487 18.7951 3.35785 18.891 3.54601C19 3.75992 19 4.03995 19 4.6V19.4C19 19.9601 19 20.2401 18.891 20.454C18.7951 20.6422 18.6422 20.7951 18.454 20.891C18.2401 21 17.9601 21 17.4 21H6.6C6.03995 21 5.75992 21 5.54601 20.891C5.35785 20.7951 5.20487 20.6422 5.10899 20.454C5 20.2401 5 19.9601 5 19.4V4.6Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"9\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 14H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 17H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
5774
|
+
"iconName": "card, profile, avatar, account",
|
|
5775
|
+
"variant": {
|
|
5776
|
+
"join": "round",
|
|
5777
|
+
"filled": "off",
|
|
5778
|
+
"radius": "1",
|
|
5779
|
+
"stroke": "2"
|
|
5780
|
+
},
|
|
5781
|
+
"createdAt": "2026-04-27T10:02:27.997505+00:00",
|
|
5782
|
+
"packageName": "round-outlined-radius-1-stroke-2",
|
|
5783
|
+
"componentName": "IconCard"
|
|
5784
|
+
},
|
|
5771
5785
|
{
|
|
5772
5786
|
"category": "Vehicles & Aircrafts",
|
|
5773
5787
|
"svg": "<path d=\"M3 18V11.3028C3 11.1054 3.05844 10.9123 3.16795 10.7481L6.70313 5.4453C6.8886 5.1671 7.20083 5 7.53518 5H16.4648C16.7992 5 17.1114 5.1671 17.2969 5.4453L20.8321 10.7481C20.9416 10.9123 21 11.1054 21 11.3028V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 10H3.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 10H22\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 13H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 13H18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.215",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-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": 1977,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 85,
|
|
@@ -951,7 +951,7 @@
|
|
|
951
951
|
]
|
|
952
952
|
},
|
|
953
953
|
"Interface General": {
|
|
954
|
-
"count":
|
|
954
|
+
"count": 199,
|
|
955
955
|
"icons": [
|
|
956
956
|
"IconAnchor1",
|
|
957
957
|
"IconAnchor2",
|
|
@@ -992,6 +992,7 @@
|
|
|
992
992
|
"IconBrokenHeart",
|
|
993
993
|
"IconBrowserTabs",
|
|
994
994
|
"IconBucket",
|
|
995
|
+
"IconCard",
|
|
995
996
|
"IconChainLink1",
|
|
996
997
|
"IconChainLink2",
|
|
997
998
|
"IconChainLink3",
|
|
@@ -2589,6 +2590,7 @@
|
|
|
2589
2590
|
"IconCar8Ev": "car-8-ev, mini-van",
|
|
2590
2591
|
"IconCar9": "car-9, van",
|
|
2591
2592
|
"IconCar9Ev": "car-9-ev, van",
|
|
2593
|
+
"IconCard": "card, profile, avatar, account",
|
|
2592
2594
|
"IconCarFrontView": "car-front-view",
|
|
2593
2595
|
"IconCarTaxi": "car-taxi, uber",
|
|
2594
2596
|
"IconCarussel": "carussel, slides",
|
package/index.d.ts
CHANGED
|
@@ -412,6 +412,7 @@ export { IconCar9, default as IconCar9Default } from "./IconCar9";
|
|
|
412
412
|
export { IconCar9Ev, default as IconCar9EvDefault } from "./IconCar9Ev";
|
|
413
413
|
export { IconCarFrontView, default as IconCarFrontViewDefault, } from "./IconCarFrontView";
|
|
414
414
|
export { IconCarTaxi, default as IconCarTaxiDefault } from "./IconCarTaxi";
|
|
415
|
+
export { IconCard, default as IconCardDefault } from "./IconCard";
|
|
415
416
|
export { IconCarussel, default as IconCarusselDefault } from "./IconCarussel";
|
|
416
417
|
export { IconCash, default as IconCashDefault } from "./IconCash";
|
|
417
418
|
export { IconCat, default as IconCatDefault } from "./IconCat";
|