@central-icons-react-native/round-filled-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 i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=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,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?i(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 h={};g(h,{IconBoat:()=>B,default:()=>d});module.exports=v(h);var C=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(f.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 p=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M10.8824 2.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z",fill:"currentColor"})),d=B;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=\"M10.8824 2.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z\"\n fill=\"currentColor\"\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,wfACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2KACF,KAAK,eACP,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 p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(l,{...C,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 n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M10.8824 2.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z",fill:"currentColor"}),t.createElement(n,{d:"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z",fill:"currentColor"})),P=a;export{a as IconBoat,P 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=\"M10.8824 2.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z\"\n fill=\"currentColor\"\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,wfACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2KACF,KAAK,eACP,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-filled-radius-3-stroke-1.5",
|
|
3445
3445
|
"componentName": "IconBoard"
|
|
3446
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"category": "Vehicles",
|
|
3449
|
+
"svg": "<path d=\"M10.8824 2.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z\" fill=\"currentColor\"/><path d=\"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z\" fill=\"currentColor\"/>",
|
|
3450
|
+
"iconName": "boat, ship, sailing",
|
|
3451
|
+
"variant": {
|
|
3452
|
+
"join": "round",
|
|
3453
|
+
"filled": "on",
|
|
3454
|
+
"radius": "3",
|
|
3455
|
+
"stroke": "1.5"
|
|
3456
|
+
},
|
|
3457
|
+
"createdAt": "2026-02-12T18:00:19.026123+00:00",
|
|
3458
|
+
"packageName": "round-filled-radius-3-stroke-1.5",
|
|
3459
|
+
"componentName": "IconBoat"
|
|
3460
|
+
},
|
|
3447
3461
|
{
|
|
3448
3462
|
"category": "Typography",
|
|
3449
3463
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 7.3125C5 4.96273 6.87119 3 9.25 3H12.9167C15.8017 3 18.0833 5.38246 18.0833 8.25C18.0833 9.49245 17.655 10.6438 16.9349 11.5498C18.1942 12.5131 19 14.0459 19 15.75C19 18.6175 16.7184 21 13.8333 21H9.25C6.87119 21 5 19.0373 5 16.6875V7.3125Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9167 10.5C14.0817 10.5 15.0833 9.5246 15.0833 8.25C15.0833 6.9754 14.0817 6 12.9167 6H9.25C8.59124 6 8 6.55567 8 7.3125V10.5H12.9167Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 13.5H13.8333C14.9984 13.5 16 14.4754 16 15.75C16 17.0246 14.9984 18 13.8333 18H9.25C8.59124 18 8 17.4443 8 16.6875V13.5Z\" fill=\"currentColor\"/>",
|
|
@@ -12561,7 +12575,7 @@
|
|
|
12561
12575
|
{
|
|
12562
12576
|
"category": "Edit",
|
|
12563
12577
|
"svg": "<path d=\"M20.4069 3.59867C19.2158 2.4061 17.2833 2.40551 16.0914 3.59735L14.0493 5.63949C12.3144 4.5627 10.4156 3.98331 8.64262 3.93339C6.74672 3.88 4.94154 4.43462 3.68393 5.70565C2.15082 7.25512 1.73102 9.51499 2.15671 11.8095C2.58335 14.1092 3.86617 16.5284 5.87216 18.5558C8.2892 20.9987 10.5576 21.6959 11.6707 21.9771C12.0723 22.0786 12.4801 21.8352 12.5815 21.4336C12.683 21.032 12.4397 20.6242 12.0381 20.5228C11.0875 20.2827 9.10043 19.6859 6.93844 17.5008C5.11742 15.6604 3.99688 13.5052 3.63154 11.5359C3.26523 9.56142 3.66483 7.85763 4.7502 6.76067C5.64406 5.85727 7.00533 5.38788 8.6004 5.43279C9.98907 5.4719 11.5149 5.9028 12.9558 6.733L11.0979 8.59093C10.3946 9.29419 9.99951 10.248 9.99951 11.2426V13.2499C9.99951 13.6641 10.3353 13.9999 10.7495 13.9999H12.773C13.7687 13.9999 14.7236 13.6039 15.427 12.8992L17.3401 10.9826C18.5442 12.4857 19.281 13.8916 19.5257 15.0825C19.7879 16.359 19.4871 17.3461 18.6037 18.0603C18.0358 18.5195 17.3863 18.5251 16.6264 18.2079C15.8437 17.8811 15.0673 17.2506 14.4593 16.6571C14.1629 16.3677 13.6881 16.3734 13.3987 16.6698C13.1094 16.9662 13.1151 17.4411 13.4115 17.7304C14.0669 18.3702 15.0049 19.1564 16.0485 19.5921C17.1148 20.0373 18.4035 20.1512 19.5468 19.2268C20.9475 18.0942 21.3474 16.4959 20.995 14.7806C20.6775 13.2351 19.7528 11.568 18.4059 9.91486L20.4076 7.90952C21.5965 6.7184 21.5962 4.78944 20.4069 3.59867Z\" fill=\"currentColor\"/>",
|
|
12564
|
-
"iconName": "highlight, mark, freehand",
|
|
12578
|
+
"iconName": "highlight, mark, freehand, drawing, paint",
|
|
12565
12579
|
"variant": {
|
|
12566
12580
|
"join": "round",
|
|
12567
12581
|
"filled": "on",
|
|
@@ -13233,7 +13247,7 @@
|
|
|
13233
13247
|
{
|
|
13234
13248
|
"category": "Edit",
|
|
13235
13249
|
"svg": "<path d=\"M9 21H7.5V3H9V21ZM6 18H5.75C3.67893 18 2 16.3211 2 14.25V9.75C2 7.67893 3.67893 6 5.75 6H6V18ZM18.25 6C20.3211 6 22 7.67893 22 9.75V14.25C22 16.3211 20.3211 18 18.25 18H10.5V6H18.25Z\" fill=\"currentColor\"/>",
|
|
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": "on",
|
|
@@ -16733,7 +16747,7 @@
|
|
|
16733
16747
|
{
|
|
16734
16748
|
"category": "Edit",
|
|
16735
16749
|
"svg": "<path d=\"M20.9001 3.09993C19.4372 1.63701 17.0597 1.63094 15.5944 3.09625L3.09809 15.5925C2.395 16.2956 2 17.2492 2 18.2435V21.25C2 21.6642 2.33579 22 2.75 22H5.75646C6.75079 22 7.70439 21.605 8.40748 20.9019L20.9037 8.40564C22.3691 6.94033 22.363 4.56285 20.9001 3.09993Z\" fill=\"currentColor\"/><path d=\"M12.7461 20.5C12.3319 20.5 11.9961 20.8358 11.9961 21.25C11.9961 21.6642 12.3319 22 12.7461 22H21.2436C21.6578 22 21.9936 21.6642 21.9936 21.25C21.9936 20.8358 21.6578 20.5 21.2436 20.5H12.7461Z\" fill=\"currentColor\"/>",
|
|
16736
|
-
"iconName": "pencil-line",
|
|
16750
|
+
"iconName": "pencil-line, signature, write",
|
|
16737
16751
|
"variant": {
|
|
16738
16752
|
"join": "round",
|
|
16739
16753
|
"filled": "on",
|
|
@@ -16761,7 +16775,7 @@
|
|
|
16761
16775
|
{
|
|
16762
16776
|
"category": "Edit",
|
|
16763
16777
|
"svg": "<path d=\"M14.8447 3.84492C16.035 2.65456 17.965 2.65456 19.1553 3.84491C20.3457 5.03527 20.3457 6.96522 19.1553 8.15557L7.40901 19.9019C6.70575 20.6052 5.75192 21.0002 4.75736 21.0002H2.75C2.33579 21.0002 2 20.6645 2 20.2502V18.2429C2 17.2483 2.39509 16.2945 3.09835 15.5912L14.8447 3.84492Z\" fill=\"currentColor\"/><path d=\"M21.5663 18.4918L21.5676 18.4903C21.8383 18.1768 21.8037 17.7032 21.4903 17.4324C21.1769 17.1618 20.7035 17.1963 20.4327 17.5095L20.4261 17.5168C20.4192 17.5246 20.4075 17.5374 20.3914 17.5547C20.3592 17.5892 20.3095 17.641 20.2446 17.7043C20.1139 17.8317 19.9261 18.0013 19.699 18.1696C19.2229 18.5224 18.675 18.7944 18.166 18.7944C17.6346 18.7944 17.124 18.5421 16.4177 18.1672L16.3494 18.131C15.7225 17.7975 14.9093 17.365 13.9866 17.365C12.2062 17.365 11.1671 18.2154 10.2046 19.2352C9.92027 19.5364 9.93398 20.0111 10.2352 20.2954C10.5364 20.5797 11.0111 20.566 11.2954 20.2648C12.1526 19.3567 12.8215 18.865 13.9866 18.865C14.5028 18.865 15.0037 19.1149 15.7145 19.4922L15.7677 19.5205C16.4011 19.8571 17.2241 20.2944 18.166 20.2944C19.1571 20.2944 20.0262 19.7942 20.5921 19.3748C20.886 19.157 21.1254 18.9405 21.2917 18.7783C21.3753 18.6968 21.4415 18.628 21.4881 18.578C21.5114 18.5531 21.5299 18.5328 21.5432 18.5179L21.5593 18.4997L21.5645 18.4939L21.5663 18.4918Z\" fill=\"currentColor\"/>",
|
|
16764
|
-
"iconName": "pencil-wave",
|
|
16778
|
+
"iconName": "pencil-wave, signature, write",
|
|
16765
16779
|
"variant": {
|
|
16766
16780
|
"join": "round",
|
|
16767
16781
|
"filled": "on",
|
|
@@ -22291,7 +22305,7 @@
|
|
|
22291
22305
|
{
|
|
22292
22306
|
"category": "Edit",
|
|
22293
22307
|
"svg": "<path d=\"M21.2114 5.78858C19.7758 4.35303 17.4483 4.35302 16.0128 5.78858L8.09835 13.703C7.39509 14.4063 7 15.3601 7 16.3547V19.2499C7 19.6642 7.33579 19.9999 7.75 19.9999H10.6453C11.6399 19.9999 12.5937 19.6049 13.2969 18.9016L21.2114 10.9872C22.6469 9.55162 22.6469 7.22413 21.2114 5.78858Z\" fill=\"currentColor\"/><path d=\"M1.75 4.99994C1.33579 4.99994 1 5.33573 1 5.74994C1 6.16416 1.33579 6.49994 1.75 6.49994H9.25C9.66421 6.49994 10 6.16416 10 5.74994C10 5.33573 9.66421 4.99994 9.25 4.99994H1.75Z\" fill=\"currentColor\"/><path d=\"M1.75 8.99994C1.33579 8.99994 1 9.33573 1 9.74994C1 10.1642 1.33579 10.4999 1.75 10.4999H6.25C6.66421 10.4999 7 10.1642 7 9.74994C7 9.33573 6.66421 8.99994 6.25 8.99994H1.75Z\" fill=\"currentColor\"/>",
|
|
22294
|
-
"iconName": "text-edit, prompts, comment",
|
|
22308
|
+
"iconName": "text-edit, prompts, comment, draft",
|
|
22295
22309
|
"variant": {
|
|
22296
22310
|
"join": "round",
|
|
22297
22311
|
"filled": "on",
|
|
@@ -24713,7 +24727,7 @@
|
|
|
24713
24727
|
{
|
|
24714
24728
|
"category": "Edit",
|
|
24715
24729
|
"svg": "<path d=\"M16.2197 3.71965C17.341 2.59833 19.159 2.59833 20.2803 3.71965C21.4016 4.84097 21.4017 6.65899 20.2803 7.78031L16.159 11.9016C15.4557 12.6049 14.5019 13 13.5074 13H11.75C11.3358 13 11 12.6642 11 12.25V10.4926C11 9.49806 11.3951 8.54423 12.0983 7.84097L16.2197 3.71965Z\" fill=\"currentColor\"/><path d=\"M5.75 11.5C4.23122 11.5 3 12.7312 3 14.25C3 15.7688 4.23122 17 5.75 17H16.25C16.9404 17 17.5 17.5596 17.5 18.25C17.5 18.9404 16.9404 19.5 16.25 19.5H11.75C11.3358 19.5 11 19.8358 11 20.25C11 20.6642 11.3358 21 11.75 21H16.25C17.7688 21 19 19.7688 19 18.25C19 16.7312 17.7688 15.5 16.25 15.5H5.75C5.05964 15.5 4.5 14.9404 4.5 14.25C4.5 13.5596 5.05964 13 5.75 13H8.25C8.66421 13 9 12.6642 9 12.25C9 11.8358 8.66421 11.5 8.25 11.5H5.75Z\" fill=\"currentColor\"/>",
|
|
24716
|
-
"iconName": "writing",
|
|
24730
|
+
"iconName": "writing, sketching, drawing",
|
|
24717
24731
|
"variant": {
|
|
24718
24732
|
"join": "round",
|
|
24719
24733
|
"filled": "on",
|
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-filled-radius-3-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.124",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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";
|