@central-icons-react-native/round-outlined-radius-3-stroke-1.5 1.1.123 → 1.1.124
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/IconBoat/index.d.ts +4 -0
- package/IconBoat/index.js +2 -0
- package/IconBoat/index.js.map +1 -0
- package/IconBoat/index.mjs +2 -0
- package/IconBoat/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +20 -6
- package/icons/index.d.ts +1 -0
- package/icons-index.json +11 -10
- 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/tsx-icons.json +13 -6
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of B(r))!I.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(s=f(r,e))||s.enumerable});return o};var i=(o,r,t)=>(t=o!=null?d(k(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),L=o=>a(n({},"__esModule",{value:!0}),o);var g={};x(g,{IconBoat:()=>u,default:()=>P});module.exports=L(g);var p=i(require("react"));var m=i(require("react")),c=require("react-native-svg"),l=({children:o,size:r=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var C=require("react-native-svg"),u=o=>p.default.createElement(l,{...o},p.default.createElement(C.Path,{d:"M4.86213 20.3099L3.09294 18.4366C2.49063 17.7989 2.94275 16.75 3.81995 16.75H20.1823C21.0592 16.75 21.5114 17.7982 20.9098 18.4361L19.1441 20.3083C18.5773 20.9093 17.7878 21.25 16.9616 21.25H7.04316C6.21778 21.25 5.42886 20.9099 4.86213 20.3099Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M12.8 16.5L12.7559 3.7204C12.7533 2.9532 11.9392 2.49827 11.3135 2.94228C9.27841 4.38653 5.60237 7.42009 3.79073 11.5491C3.49895 12.2141 4.06623 12.8988 4.78938 12.8323C9.14269 12.432 13.9559 12.5842 18.2999 12.9687C18.9992 13.0306 19.5482 12.3781 19.2881 11.7261C18.0089 8.51916 15.586 6.18617 13.3167 4.82143",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),P=u;0&&(module.exports={IconBoat});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBoat/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 IconBoat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.86213 20.3099L3.09294 18.4366C2.49063 17.7989 2.94275 16.75 3.81995 16.75H20.1823C21.0592 16.75 21.5114 17.7982 20.9098 18.4361L19.1441 20.3083C18.5773 20.9093 17.7878 21.25 16.9616 21.25H7.04316C6.21778 21.25 5.42886 20.9099 4.86213 20.3099Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.8 16.5L12.7559 3.7204C12.7533 2.9532 11.9392 2.49827 11.3135 2.94228C9.27841 4.38653 5.60237 7.42009 3.79073 11.5491C3.49895 12.2141 4.06623 12.8988 4.78938 12.8323C9.14269 12.432 13.9559 12.5842 18.2999 12.9687C18.9992 13.0306 19.5482 12.3781 19.2881 11.7261C18.0089 8.51916 15.586 6.18617 13.3167 4.82143\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBoat;\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,EAAqB,4BAERC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wPACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yTACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBoat_exports","__export","IconBoat","IconBoat_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBoat","props","React","CentralIconBase","IconBoat_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as s}from"react-native-svg";var e=({children:r,size:o=24,...p})=>C.createElement(s,{...p,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 n}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(n,{d:"M4.86213 20.3099L3.09294 18.4366C2.49063 17.7989 2.94275 16.75 3.81995 16.75H20.1823C21.0592 16.75 21.5114 17.7982 20.9098 18.4361L19.1441 20.3083C18.5773 20.9093 17.7878 21.25 16.9616 21.25H7.04316C6.21778 21.25 5.42886 20.9099 4.86213 20.3099Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M12.8 16.5L12.7559 3.7204C12.7533 2.9532 11.9392 2.49827 11.3135 2.94228C9.27841 4.38653 5.60237 7.42009 3.79073 11.5491C3.49895 12.2141 4.06623 12.8988 4.78938 12.8323C9.14269 12.432 13.9559 12.5842 18.2999 12.9687C18.9992 13.0306 19.5482 12.3781 19.2881 11.7261C18.0089 8.51916 15.586 6.18617 13.3167 4.82143",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconBoat,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBoat/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 IconBoat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.86213 20.3099L3.09294 18.4366C2.49063 17.7989 2.94275 16.75 3.81995 16.75H20.1823C21.0592 16.75 21.5114 17.7982 20.9098 18.4361L19.1441 20.3083C18.5773 20.9093 17.7878 21.25 16.9616 21.25H7.04316C6.21778 21.25 5.42886 20.9099 4.86213 20.3099Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.8 16.5L12.7559 3.7204C12.7533 2.9532 11.9392 2.49827 11.3135 2.94228C9.27841 4.38653 5.60237 7.42009 3.79073 11.5491C3.49895 12.2141 4.06623 12.8988 4.78938 12.8323C9.14269 12.432 13.9559 12.5842 18.2999 12.9687C18.9992 13.0306 19.5482 12.3781 19.2881 11.7261C18.0089 8.51916 15.586 6.18617 13.3167 4.82143\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBoat;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wPACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yTACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBoat","props","React","CentralIconBase","IconBoat_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -3444,6 +3444,20 @@
|
|
|
3444
3444
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
3445
3445
|
"componentName": "IconBoard"
|
|
3446
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"category": "Vehicles",
|
|
3449
|
+
"svg": "<path d=\"M4.86213 20.3099L3.09294 18.4366C2.49063 17.7989 2.94275 16.75 3.81995 16.75H20.1823C21.0592 16.75 21.5114 17.7982 20.9098 18.4361L19.1441 20.3083C18.5773 20.9093 17.7878 21.25 16.9616 21.25H7.04316C6.21778 21.25 5.42886 20.9099 4.86213 20.3099Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.8 16.5L12.7559 3.7204C12.7533 2.9532 11.9392 2.49827 11.3135 2.94228C9.27841 4.38653 5.60237 7.42009 3.79073 11.5491C3.49895 12.2141 4.06623 12.8988 4.78938 12.8323C9.14269 12.432 13.9559 12.5842 18.2999 12.9687C18.9992 13.0306 19.5482 12.3781 19.2881 11.7261C18.0089 8.51916 15.586 6.18617 13.3167 4.82143\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
3450
|
+
"iconName": "boat, ship, sailing",
|
|
3451
|
+
"variant": {
|
|
3452
|
+
"join": "round",
|
|
3453
|
+
"filled": "off",
|
|
3454
|
+
"radius": "3",
|
|
3455
|
+
"stroke": "1.5"
|
|
3456
|
+
},
|
|
3457
|
+
"createdAt": "2026-02-12T18:00:19.026123+00:00",
|
|
3458
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
3459
|
+
"componentName": "IconBoat"
|
|
3460
|
+
},
|
|
3447
3461
|
{
|
|
3448
3462
|
"category": "Typography",
|
|
3449
3463
|
"svg": "<path d=\"M17.252 8V7.75C17.252 5.54086 15.4611 3.75 13.252 3.75H8.74219C7.08533 3.75 5.74219 5.09315 5.74219 6.75V9C5.74219 10.6569 7.08533 12 8.74219 12H13.252C15.4611 12 17.252 10.2091 17.252 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M5.74219 12V17.25C5.74219 18.9069 7.08533 20.25 8.74219 20.25H12.502\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M13 20.25H14.25C16.4591 20.25 18.25 18.4591 18.25 16.25V16C18.25 13.7909 16.4591 12 14.25 12H13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
@@ -12561,7 +12575,7 @@
|
|
|
12561
12575
|
{
|
|
12562
12576
|
"category": "Edit",
|
|
12563
12577
|
"svg": "<path d=\"M10.75 13.2499H12.7735C13.5701 13.2499 14.3339 12.9331 14.8967 12.3693L19.8772 7.37968C20.7739 6.4814 20.7736 5.02668 19.8767 4.12868C18.9785 3.22931 17.5211 3.22886 16.6223 4.12768L11.6287 9.12126C11.0661 9.68387 10.75 10.4469 10.75 11.2426V13.2499Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.8549 21.25C10.823 20.9894 8.6953 20.3424 6.40579 18.0284C2.57878 14.1605 1.59907 8.87966 4.21755 6.23323C6.36902 4.05879 10.5504 4.18522 14 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.4997 10C20.4768 13.473 21.3595 16.7968 19.0754 18.6436C17.3643 20.0271 15.199 18.4271 13.9355 17.1938\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12564
|
-
"iconName": "highlight, mark, freehand",
|
|
12578
|
+
"iconName": "highlight, mark, freehand, drawing, paint",
|
|
12565
12579
|
"variant": {
|
|
12566
12580
|
"join": "round",
|
|
12567
12581
|
"filled": "off",
|
|
@@ -13233,7 +13247,7 @@
|
|
|
13233
13247
|
{
|
|
13234
13248
|
"category": "Edit",
|
|
13235
13249
|
"svg": "<path d=\"M11.75 6.75H18.25C19.9069 6.75 21.25 8.09315 21.25 9.75V14.25C21.25 15.9069 19.9069 17.25 18.25 17.25H11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 6.75C4.09315 6.75 2.75 8.09315 2.75 9.75V14.25C2.75 15.9069 4.09315 17.25 5.75 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 3.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
13236
|
-
"iconName": "input-form, text-area, prompt",
|
|
13250
|
+
"iconName": "input-form, text-area, prompt, rename",
|
|
13237
13251
|
"variant": {
|
|
13238
13252
|
"join": "round",
|
|
13239
13253
|
"filled": "off",
|
|
@@ -16733,7 +16747,7 @@
|
|
|
16733
16747
|
{
|
|
16734
16748
|
"category": "Edit",
|
|
16735
16749
|
"svg": "<path d=\"M2.75 21.2555V18.2482C2.75 17.4525 3.06607 16.6895 3.62868 16.1268L16.1287 3.62684C17.3003 2.45527 19.2034 2.45895 20.375 3.63052C21.5466 4.80209 21.5502 6.70527 20.3787 7.87684L7.87868 20.3768C7.31607 20.9395 6.55301 21.2555 5.75736 21.2555H2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 21.2555H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>",
|
|
16736
|
-
"iconName": "pencil-line",
|
|
16750
|
+
"iconName": "pencil-line, signature, write",
|
|
16737
16751
|
"variant": {
|
|
16738
16752
|
"join": "round",
|
|
16739
16753
|
"filled": "off",
|
|
@@ -16761,7 +16775,7 @@
|
|
|
16761
16775
|
{
|
|
16762
16776
|
"category": "Edit",
|
|
16763
16777
|
"svg": "<path d=\"M6.87868 19.3713L18.625 7.625C19.5225 6.72754 19.5225 5.27246 18.625 4.375C17.7275 3.47754 16.2725 3.47754 15.375 4.375L3.62868 16.1213C3.06607 16.6839 2.75 17.447 2.75 18.2426V20.25H4.75736C5.55301 20.25 6.31607 19.9339 6.87868 19.3713Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 18C21 18 19.666 19.5444 18.166 19.5444C16.666 19.5444 15.4594 18.115 13.9866 18.115C12.5138 18.115 11.6598 18.786 10.75 19.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16764
|
-
"iconName": "pencil-wave",
|
|
16778
|
+
"iconName": "pencil-wave, signature, write",
|
|
16765
16779
|
"variant": {
|
|
16766
16780
|
"join": "round",
|
|
16767
16781
|
"filled": "off",
|
|
@@ -22291,7 +22305,7 @@
|
|
|
22291
22305
|
{
|
|
22292
22306
|
"category": "Edit",
|
|
22293
22307
|
"svg": "<path d=\"M1.75 5.75H9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.75 9.75H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.7666 18.3713L20.681 10.4568C21.8237 9.31418 21.8237 7.46157 20.681 6.31891C19.5384 5.17625 17.6858 5.17625 16.5431 6.31891L8.62868 14.2333C8.06607 14.7959 7.75 15.559 7.75 16.3547V19.2499H10.6453C11.4409 19.2499 12.204 18.9339 12.7666 18.3713Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22294
|
-
"iconName": "text-edit, prompts, comment",
|
|
22308
|
+
"iconName": "text-edit, prompts, comment, draft",
|
|
22295
22309
|
"variant": {
|
|
22296
22310
|
"join": "round",
|
|
22297
22311
|
"filled": "off",
|
|
@@ -24713,7 +24727,7 @@
|
|
|
24713
24727
|
{
|
|
24714
24728
|
"category": "Edit",
|
|
24715
24729
|
"svg": "<path d=\"M19.75 4.24998C18.9216 3.42156 17.5784 3.42156 16.75 4.24998L12.6287 8.3713C12.0661 8.93391 11.75 9.69697 11.75 10.4926V12.25H13.5074C14.303 12.25 15.0661 11.9339 15.6287 11.3713L19.75 7.24998C20.5784 6.42155 20.5784 5.07841 19.75 4.24998Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 12.25H5.75C4.64543 12.25 3.75 13.1454 3.75 14.25C3.75 15.3546 4.64543 16.25 5.75 16.25H16.25C17.3546 16.25 18.25 17.1454 18.25 18.25C18.25 19.3546 17.3546 20.25 16.25 20.25H11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
24716
|
-
"iconName": "writing",
|
|
24730
|
+
"iconName": "writing, sketching, drawing",
|
|
24717
24731
|
"variant": {
|
|
24718
24732
|
"join": "round",
|
|
24719
24733
|
"filled": "off",
|
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-3-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.124",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-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": 1775,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 67,
|
|
@@ -1908,8 +1908,8 @@
|
|
|
1908
1908
|
]
|
|
1909
1909
|
},
|
|
1910
1910
|
"Vehicles": {
|
|
1911
|
-
"count":
|
|
1912
|
-
"icons": ["IconSteeringWheel1"]
|
|
1911
|
+
"count": 2,
|
|
1912
|
+
"icons": ["IconBoat", "IconSteeringWheel1"]
|
|
1913
1913
|
},
|
|
1914
1914
|
"Vehicles & Aircrafts": {
|
|
1915
1915
|
"count": 35,
|
|
@@ -2223,6 +2223,7 @@
|
|
|
2223
2223
|
"IconBluetooth": "bluetooth",
|
|
2224
2224
|
"IconBlur": "blur",
|
|
2225
2225
|
"IconBoard": "board, moodboard, layout, template",
|
|
2226
|
+
"IconBoat": "boat, ship, sailing",
|
|
2226
2227
|
"IconBold": "bold",
|
|
2227
2228
|
"IconBolt": "bolt",
|
|
2228
2229
|
"IconBomb": "bomb, boom",
|
|
@@ -2874,7 +2875,7 @@
|
|
|
2874
2875
|
"IconHeart": "heart, like, health, life, favorite",
|
|
2875
2876
|
"IconHeart2": "heart-2, like, health, life, fav",
|
|
2876
2877
|
"IconHeartBeat": "heart-beat, heart rate, pulse",
|
|
2877
|
-
"IconHighlight": "highlight, mark, freehand",
|
|
2878
|
+
"IconHighlight": "highlight, mark, freehand, drawing, paint",
|
|
2878
2879
|
"IconHighlights": "highlights",
|
|
2879
2880
|
"IconHistory": "history, back, timeline",
|
|
2880
2881
|
"IconHome": "home, house",
|
|
@@ -2922,7 +2923,7 @@
|
|
|
2922
2923
|
"IconInfinity": "infinity, loop, boomerang",
|
|
2923
2924
|
"IconInitiatives": "initiatives, nav, rooting",
|
|
2924
2925
|
"IconInjection": "injection",
|
|
2925
|
-
"IconInputForm": "input-form, text-area, prompt",
|
|
2926
|
+
"IconInputForm": "input-form, text-area, prompt, rename",
|
|
2926
2927
|
"IconInsights": "insights, analyze",
|
|
2927
2928
|
"IconInstagram": "instagram",
|
|
2928
2929
|
"IconIntegrations": "integrations, frames, keyframes, interactions",
|
|
@@ -3172,9 +3173,9 @@
|
|
|
3172
3173
|
"IconPayment": "payment, flow, connection",
|
|
3173
3174
|
"IconPeace": "peace",
|
|
3174
3175
|
"IconPencil": "pencil, edit, write",
|
|
3175
|
-
"IconPencilLine": "pencil-line",
|
|
3176
|
+
"IconPencilLine": "pencil-line, signature, write",
|
|
3176
3177
|
"IconPencilSparkle": "pencil-sparkle, magic pencil, magic brush",
|
|
3177
|
-
"IconPencilWave": "pencil-wave",
|
|
3178
|
+
"IconPencilWave": "pencil-wave, signature, write",
|
|
3178
3179
|
"IconPeople": "people, user, person, avatar",
|
|
3179
3180
|
"IconPeople2": "people-2",
|
|
3180
3181
|
"IconPeopleAdd": "people-add, user-add",
|
|
@@ -3569,7 +3570,7 @@
|
|
|
3569
3570
|
"IconTextareaDrag": "textarea-drag",
|
|
3570
3571
|
"IconTextBlock": "text-block",
|
|
3571
3572
|
"IconTextColor": "text-color",
|
|
3572
|
-
"IconTextEdit": "text-edit, prompts, comment",
|
|
3573
|
+
"IconTextEdit": "text-edit, prompts, comment, draft",
|
|
3573
3574
|
"IconTextIndentLeft": "text-indent-left",
|
|
3574
3575
|
"IconTextIndentRight": "text-indent-right",
|
|
3575
3576
|
"IconTextIndicator": "text-indicator",
|
|
@@ -3742,7 +3743,7 @@
|
|
|
3742
3743
|
"IconWrite": "write, edit-list, list",
|
|
3743
3744
|
"IconWrite1": "write-1, fountain-pen",
|
|
3744
3745
|
"IconWrite2": "write-2, fountain-pen",
|
|
3745
|
-
"IconWriting": "writing",
|
|
3746
|
+
"IconWriting": "writing, sketching, drawing",
|
|
3746
3747
|
"IconX": "x",
|
|
3747
3748
|
"IconXbox": "xbox",
|
|
3748
3749
|
"IconYen": "yen, currency, money, coin",
|
package/index.d.ts
CHANGED
|
@@ -244,6 +244,7 @@ export { IconBluesky, default as IconBlueskyDefault } from "./IconBluesky";
|
|
|
244
244
|
export { IconBluetooth, default as IconBluetoothDefault, } from "./IconBluetooth";
|
|
245
245
|
export { IconBlur, default as IconBlurDefault } from "./IconBlur";
|
|
246
246
|
export { IconBoard, default as IconBoardDefault } from "./IconBoard";
|
|
247
|
+
export { IconBoat, default as IconBoatDefault } from "./IconBoat";
|
|
247
248
|
export { IconBold, default as IconBoldDefault } from "./IconBold";
|
|
248
249
|
export { IconBolt, default as IconBoltDefault } from "./IconBolt";
|
|
249
250
|
export { IconBomb, default as IconBombDefault } from "./IconBomb";
|