@central-icons-react-native/round-filled-radius-1-stroke-1 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:"M11.7259 2.1204C12.7141 1.39482 14.0012 2.14091 14.0012 3.304V16.0003H20.4192C21.677 16.0003 22.3768 17.4556 21.5911 18.4378L19.1907 21.4378C18.9061 21.7931 18.4751 22.0002 18.0198 22.0003H5.98074C5.52544 22.0001 5.0944 21.7932 4.80984 21.4378L2.40945 18.4378C1.62381 17.4557 2.32378 16.0006 3.58133 16.0003H13.0012V13.5618C10.0955 13.5191 7.13854 13.5971 4.58621 13.8313C3.54905 13.9264 2.61245 12.919 3.09304 11.8479C5.08701 7.40493 9.45121 3.79202 11.7259 2.1204Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M15.0012 4.97001C17.1675 6.49159 19.6964 8.96333 20.9768 11.929C21.4301 12.9798 20.5179 13.9476 19.51 13.8655C18.1052 13.7506 16.5765 13.6647 15.0012 13.6116V4.97001Z",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=\"M11.7259 2.1204C12.7141 1.39482 14.0012 2.14091 14.0012 3.304V16.0003H20.4192C21.677 16.0003 22.3768 17.4556 21.5911 18.4378L19.1907 21.4378C18.9061 21.7931 18.4751 22.0002 18.0198 22.0003H5.98074C5.52544 22.0001 5.0944 21.7932 4.80984 21.4378L2.40945 18.4378C1.62381 17.4557 2.32378 16.0006 3.58133 16.0003H13.0012V13.5618C10.0955 13.5191 7.13854 13.5971 4.58621 13.8313C3.54905 13.9264 2.61245 12.919 3.09304 11.8479C5.08701 7.40493 9.45121 3.79202 11.7259 2.1204Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0012 4.97001C17.1675 6.49159 19.6964 8.96333 20.9768 11.929C21.4301 12.9798 20.5179 13.9476 19.51 13.8655C18.1052 13.7506 16.5765 13.6647 15.0012 13.6116V4.97001Z\"\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,qdACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yKACF,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:"M11.7259 2.1204C12.7141 1.39482 14.0012 2.14091 14.0012 3.304V16.0003H20.4192C21.677 16.0003 22.3768 17.4556 21.5911 18.4378L19.1907 21.4378C18.9061 21.7931 18.4751 22.0002 18.0198 22.0003H5.98074C5.52544 22.0001 5.0944 21.7932 4.80984 21.4378L2.40945 18.4378C1.62381 17.4557 2.32378 16.0006 3.58133 16.0003H13.0012V13.5618C10.0955 13.5191 7.13854 13.5971 4.58621 13.8313C3.54905 13.9264 2.61245 12.919 3.09304 11.8479C5.08701 7.40493 9.45121 3.79202 11.7259 2.1204Z",fill:"currentColor"}),t.createElement(n,{d:"M15.0012 4.97001C17.1675 6.49159 19.6964 8.96333 20.9768 11.929C21.4301 12.9798 20.5179 13.9476 19.51 13.8655C18.1052 13.7506 16.5765 13.6647 15.0012 13.6116V4.97001Z",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=\"M11.7259 2.1204C12.7141 1.39482 14.0012 2.14091 14.0012 3.304V16.0003H20.4192C21.677 16.0003 22.3768 17.4556 21.5911 18.4378L19.1907 21.4378C18.9061 21.7931 18.4751 22.0002 18.0198 22.0003H5.98074C5.52544 22.0001 5.0944 21.7932 4.80984 21.4378L2.40945 18.4378C1.62381 17.4557 2.32378 16.0006 3.58133 16.0003H13.0012V13.5618C10.0955 13.5191 7.13854 13.5971 4.58621 13.8313C3.54905 13.9264 2.61245 12.919 3.09304 11.8479C5.08701 7.40493 9.45121 3.79202 11.7259 2.1204Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0012 4.97001C17.1675 6.49159 19.6964 8.96333 20.9768 11.929C21.4301 12.9798 20.5179 13.9476 19.51 13.8655C18.1052 13.7506 16.5765 13.6647 15.0012 13.6116V4.97001Z\"\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,qdACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,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-1-stroke-1",
|
|
3445
3445
|
"componentName": "IconBoard"
|
|
3446
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"category": "Vehicles",
|
|
3449
|
+
"svg": "<path d=\"M11.7259 2.1204C12.7141 1.39482 14.0012 2.14091 14.0012 3.304V16.0003H20.4192C21.677 16.0003 22.3768 17.4556 21.5911 18.4378L19.1907 21.4378C18.9061 21.7931 18.4751 22.0002 18.0198 22.0003H5.98074C5.52544 22.0001 5.0944 21.7932 4.80984 21.4378L2.40945 18.4378C1.62381 17.4557 2.32378 16.0006 3.58133 16.0003H13.0012V13.5618C10.0955 13.5191 7.13854 13.5971 4.58621 13.8313C3.54905 13.9264 2.61245 12.919 3.09304 11.8479C5.08701 7.40493 9.45121 3.79202 11.7259 2.1204Z\" fill=\"currentColor\"/><path d=\"M15.0012 4.97001C17.1675 6.49159 19.6964 8.96333 20.9768 11.929C21.4301 12.9798 20.5179 13.9476 19.51 13.8655C18.1052 13.7506 16.5765 13.6647 15.0012 13.6116V4.97001Z\" fill=\"currentColor\"/>",
|
|
3450
|
+
"iconName": "boat, ship, sailing",
|
|
3451
|
+
"variant": {
|
|
3452
|
+
"join": "round",
|
|
3453
|
+
"filled": "on",
|
|
3454
|
+
"radius": "1",
|
|
3455
|
+
"stroke": "1"
|
|
3456
|
+
},
|
|
3457
|
+
"createdAt": "2026-02-12T18:00:19.026123+00:00",
|
|
3458
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
3459
|
+
"componentName": "IconBoat"
|
|
3460
|
+
},
|
|
3447
3461
|
{
|
|
3448
3462
|
"category": "Typography",
|
|
3449
3463
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 5C5 3.89543 5.89543 3 7 3H13C15.7614 3 18 5.23858 18 8C18 9.43071 17.3991 10.7211 16.4359 11.6325C17.9657 12.4875 19 14.123 19 16C19 18.7614 16.7614 21 14 21H7C5.89543 21 5 20.1046 5 19V5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 11C14.6569 11 16 9.65685 16 8C16 6.34315 14.6569 5 13 5H7V11H13Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 13H14C15.6569 13 17 14.3431 17 16C17 17.6569 15.6569 19 14 19H7V13Z\" fill=\"currentColor\"/>",
|
|
@@ -12561,7 +12575,7 @@
|
|
|
12561
12575
|
{
|
|
12562
12576
|
"category": "Edit",
|
|
12563
12577
|
"svg": "<path d=\"M19.5406 2.84877C18.9538 2.2657 18.0057 2.26781 17.4215 2.85347L13.7309 6.55301C11.9854 5.38572 10.0506 4.75045 8.25865 4.6888C6.45174 4.62663 4.75491 5.14936 3.57954 6.34573C2.14972 7.80109 1.74244 9.93935 2.14951 12.1492C2.55728 14.3628 3.787 16.7054 5.72151 18.6745C8.04746 21.042 10.2241 21.7138 11.2888 21.9846C11.5564 22.0527 11.8285 21.8909 11.8966 21.6233C11.9647 21.3557 11.803 21.0836 11.5353 21.0155C10.58 20.7724 8.59113 20.1685 6.43485 17.9737C4.62326 16.1297 3.50043 13.9628 3.13296 11.968C2.76478 9.96931 3.15956 8.20011 4.29288 7.04655C5.22349 6.09931 6.62008 5.63301 8.22426 5.68821C9.75771 5.74097 11.4487 6.27178 13.0098 7.27588L10.4377 9.85418C10.1572 10.1354 9.99968 10.5164 9.99968 10.9136V13.5001C9.99968 13.7762 10.2235 14.0001 10.4997 14.0001H13.0855C13.4833 14.0001 13.8648 13.842 14.1461 13.5607L16.7396 10.9672C18.0984 12.5942 18.9261 14.1178 19.1806 15.4129C19.4363 16.7139 19.1168 17.7675 18.1646 18.5429C17.5193 19.0683 16.7851 19.055 15.9941 18.7225C15.1875 18.3833 14.4023 17.7374 13.7996 17.1448C13.6027 16.9512 13.2861 16.9539 13.0925 17.1508C12.8989 17.3477 12.9016 17.6643 13.0985 17.8579C13.7325 18.4812 14.6255 19.2318 15.6065 19.6443C16.6032 20.0634 17.7662 20.1568 18.796 19.3183C20.0796 18.2731 20.4769 16.8232 20.1619 15.2201C19.8579 13.6734 18.8948 11.973 17.4494 10.2574L21.1438 6.563C21.731 5.97587 21.7294 5.02349 21.1404 4.43826L19.5406 2.84877Z\" 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=\"M8.5 2.5C8.77614 2.5 9 2.72386 9 3V21C9 21.2761 8.77614 21.5 8.5 21.5C8.22386 21.5 8 21.2761 8 21V3C8 2.72386 8.22386 2.5 8.5 2.5Z\" fill=\"currentColor\"/><path d=\"M6.5 18H3.5C2.67157 18 2 17.3284 2 16.5V7.5C2 6.67157 2.67157 6 3.5 6H6.5V18Z\" fill=\"currentColor\"/><path d=\"M20.5 6C21.3284 6 22 6.67157 22 7.5V16.5C22 17.3284 21.3284 18 20.5 18H10.5V6H20.5Z\" 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=\"M18.4901 2.43802C17.906 1.85399 16.9591 1.85399 16.3751 2.43802L2.43802 16.3751C2.15756 16.6556 2 17.0359 2 17.4326V22H6.56742C6.96405 22 7.34444 21.8424 7.6249 21.562L21.562 7.6249C22.146 7.04087 22.146 6.09397 21.562 5.50994L18.4901 2.43802Z\" fill=\"currentColor\"/><path d=\"M11.5 21C11.2239 21 11 21.2239 11 21.5C11 21.7761 11.2239 22 11.5 22H21.5C21.7761 22 22 21.7761 22 21.5C22 21.2239 21.7761 21 21.5 21H11.5Z\" 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=\"M17.8107 3.1034C17.2249 2.51761 16.2751 2.51762 15.6893 3.1034L2.43934 16.3534C2.15804 16.6347 2 17.0162 2 17.4141V20.4998C2 20.776 2.22386 20.9998 2.5 20.9998H5.58579C5.98361 20.9998 6.36514 20.8418 6.64645 20.5605L19.8964 7.31051C20.4822 6.72472 20.4822 5.77498 19.8964 5.18919L17.8107 3.1034Z\" fill=\"currentColor\"/><path d=\"M21.5975 18.1238C21.5558 18.1803 21.4956 18.2586 21.4177 18.3514C21.2625 18.5365 21.0344 18.7828 20.7402 19.0299C20.1574 19.5194 19.2758 20.0442 18.166 20.0442C17.0793 20.0442 16.3051 19.6274 15.6695 19.2634L15.5871 19.2161C14.9733 18.864 14.539 18.6148 13.9866 18.6148C12.7309 18.6148 11.8393 19.2805 10.8683 20.338C10.6815 20.5414 10.3652 20.5549 10.1618 20.3681C9.95843 20.1813 9.94494 19.865 10.1317 19.6616C11.1536 18.5487 12.2967 17.6148 13.9866 17.6148C14.8161 17.6148 15.4727 17.9946 16.0335 18.319C16.0784 18.3449 16.1228 18.3706 16.1665 18.3956C16.7786 18.7462 17.3578 19.0442 18.166 19.0442C18.9514 19.0442 19.6118 18.6717 20.0971 18.2641C20.337 18.0626 20.5246 17.8603 20.6515 17.7089C20.8756 17.4416 21.1296 17.0702 21.5262 17.333C21.8187 17.5268 21.7804 17.8761 21.5975 18.1238Z\" 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=\"M19.5607 4.85365C18.9749 4.26786 18.0251 4.26786 17.4393 4.85365L7.43934 14.8536C7.15804 15.1349 7 15.5165 7 15.9143V19.5001C7 19.7762 7.22386 20.0001 7.5 20.0001H11.0858C11.4836 20.0001 11.8651 19.8421 12.1464 19.5608L22.1464 9.56075C22.7322 8.97497 22.7322 8.02522 22.1464 7.43943L19.5607 4.85365Z\" fill=\"currentColor\"/><path d=\"M1.5 5.00009C1.22386 5.00009 1 5.22395 1 5.50009C1 5.77623 1.22386 6.00009 1.5 6.00009H9.5C9.77614 6.00009 10 5.77623 10 5.50009C10 5.22395 9.77614 5.00009 9.5 5.00009H1.5Z\" fill=\"currentColor\"/><path d=\"M1.5 9.00009C1.22386 9.00009 1 9.22395 1 9.50009C1 9.77623 1.22386 10.0001 1.5 10.0001H6.5C6.77614 10.0001 7 9.77623 7 9.50009C7 9.22395 6.77614 9.00009 6.5 9.00009H1.5Z\" 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=\"M19.5607 2.85365C18.9749 2.26786 18.0251 2.26786 17.4393 2.85365L11.4393 8.85365C11.158 9.13495 11 9.51648 11 9.91431V12.5001C11 12.7762 11.2239 13.0001 11.5 13.0001H14.0858C14.4836 13.0001 14.8651 12.8421 15.1464 12.5608L21.1464 6.56075C21.7322 5.97497 21.7322 5.02522 21.1464 4.43943L19.5607 2.85365Z\" fill=\"currentColor\"/><path d=\"M5.5 12C4.11929 12 3 13.1193 3 14.5C3 15.8807 4.11929 17 5.5 17H16.5C17.3284 17 18 17.6716 18 18.5C18 19.3284 17.3284 20 16.5 20H11.5C11.2239 20 11 20.2239 11 20.5C11 20.7761 11.2239 21 11.5 21H16.5C17.8807 21 19 19.8807 19 18.5C19 17.1193 17.8807 16 16.5 16H5.5C4.67157 16 4 15.3284 4 14.5C4 13.6716 4.67157 13 5.5 13H8.5C8.77614 13 9 12.7761 9 12.5C9 12.2239 8.77614 12 8.5 12H5.5Z\" 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-1-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.124",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-stroke-1/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";
|