@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.1 → 1.1.2
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/IconDraw/index.d.ts +4 -0
- package/IconDraw/index.js +2 -0
- package/IconDraw/index.js.map +1 -0
- package/IconDraw/index.mjs +2 -0
- package/IconDraw/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/tsx-icons.json +7 -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 x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{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:!(a=B(o,e))||a.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(x(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>C(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconDraw:()=>f,default:()=>h});module.exports=g(v);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...t})=>m.default.createElement(c.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 i=require("react-native-svg"),f=r=>p.default.createElement(l,{...r},p.default.createElement(i.Path,{d:"M3 13.4373C10.9441 5.61671 14.2217 2.57684 16.1477 4.61689C18.8876 7.51877 4.81487 16.3263 8.70811 18.5625C11.9519 20.4243 17.1868 10.2665 19.3367 12.8717C20.605 14.407 16.1477 17.8098 17.3343 19.5029C18.1493 20.6653 19.8966 19.5547 21 18.5625",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=f;0&&(module.exports={IconDraw});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDraw/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 IconDraw: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 13.4373C10.9441 5.61671 14.2217 2.57684 16.1477 4.61689C18.8876 7.51877 4.81487 16.3263 8.70811 18.5625C11.9519 20.4243 17.1868 10.2665 19.3367 12.8717C20.605 14.407 16.1477 17.8098 17.3343 19.5029C18.1493 20.6653 19.8966 19.5547 21 18.5625\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDraw;\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,sPACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconDraw_exports","__export","IconDraw","IconDraw_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDraw","props","React","CentralIconBase","IconDraw_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(a,{...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 C}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(C,{d:"M3 13.4373C10.9441 5.61671 14.2217 2.57684 16.1477 4.61689C18.8876 7.51877 4.81487 16.3263 8.70811 18.5625C11.9519 20.4243 17.1868 10.2665 19.3367 12.8717C20.605 14.407 16.1477 17.8098 17.3343 19.5029C18.1493 20.6653 19.8966 19.5547 21 18.5625",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=s;export{s as IconDraw,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDraw/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 IconDraw: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 13.4373C10.9441 5.61671 14.2217 2.57684 16.1477 4.61689C18.8876 7.51877 4.81487 16.3263 8.70811 18.5625C11.9519 20.4243 17.1868 10.2665 19.3367 12.8717C20.605 14.407 16.1477 17.8098 17.3343 19.5029C18.1493 20.6653 19.8966 19.5547 21 18.5625\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDraw;\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,sPACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDraw","props","React","CentralIconBase","IconDraw_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -7910,6 +7910,20 @@
|
|
|
7910
7910
|
"packageName": "round-outlined-radius-3-stroke-2",
|
|
7911
7911
|
"componentName": "IconDraft"
|
|
7912
7912
|
},
|
|
7913
|
+
{
|
|
7914
|
+
"category": "Edit",
|
|
7915
|
+
"svg": "<path d=\"M3 13.4373C10.9441 5.61671 14.2217 2.57684 16.1477 4.61689C18.8876 7.51877 4.81487 16.3263 8.70811 18.5625C11.9519 20.4243 17.1868 10.2665 19.3367 12.8717C20.605 14.407 16.1477 17.8098 17.3343 19.5029C18.1493 20.6653 19.8966 19.5547 21 18.5625\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7916
|
+
"iconName": "draw, sketch, scratch",
|
|
7917
|
+
"variant": {
|
|
7918
|
+
"join": "round",
|
|
7919
|
+
"filled": "off",
|
|
7920
|
+
"radius": "3",
|
|
7921
|
+
"stroke": "2"
|
|
7922
|
+
},
|
|
7923
|
+
"createdAt": "2025-09-17T05:30:27.554935+00:00",
|
|
7924
|
+
"packageName": "round-outlined-radius-3-stroke-2",
|
|
7925
|
+
"componentName": "IconDraw"
|
|
7926
|
+
},
|
|
7913
7927
|
{
|
|
7914
7928
|
"category": "Furniture & Household",
|
|
7915
7929
|
"svg": "<path d=\"M5 6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V16C19 17.6569 17.6569 19 16 19H8C6.34315 19 5 17.6569 5 16V6Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 11L5 11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 19V21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 19V21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 7H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 15H14\" 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-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-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": 1530,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 33,
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
]
|
|
431
431
|
},
|
|
432
432
|
"Edit": {
|
|
433
|
-
"count":
|
|
433
|
+
"count": 69,
|
|
434
434
|
"icons": [
|
|
435
435
|
"IconAddKeyframe",
|
|
436
436
|
"IconBezier",
|
|
@@ -458,6 +458,7 @@
|
|
|
458
458
|
"IconComponents",
|
|
459
459
|
"IconCornerRadius",
|
|
460
460
|
"IconDispersion",
|
|
461
|
+
"IconDraw",
|
|
461
462
|
"IconEditBig",
|
|
462
463
|
"IconEditSmall1",
|
|
463
464
|
"IconEditSmall2",
|
|
@@ -2284,6 +2285,7 @@
|
|
|
2284
2285
|
"IconDownsize": "downsize, exit-full-screen, scale-down",
|
|
2285
2286
|
"IconDownsize2": "downsize-2, exit-full-screen, scale-down",
|
|
2286
2287
|
"IconDraft": "draft",
|
|
2288
|
+
"IconDraw": "draw, sketch, scratch",
|
|
2287
2289
|
"IconDrawer1": "drawer-1",
|
|
2288
2290
|
"IconDrawer2": "drawer-2",
|
|
2289
2291
|
"IconDrawer3": "drawer-3",
|
package/index.d.ts
CHANGED
|
@@ -563,6 +563,7 @@ export { IconDotGrid3x3, default as IconDotGrid3x3Default, } from "./IconDotGrid
|
|
|
563
563
|
export { IconDownsize, default as IconDownsizeDefault } from "./IconDownsize";
|
|
564
564
|
export { IconDownsize2, default as IconDownsize2Default, } from "./IconDownsize2";
|
|
565
565
|
export { IconDraft, default as IconDraftDefault } from "./IconDraft";
|
|
566
|
+
export { IconDraw, default as IconDrawDefault } from "./IconDraw";
|
|
566
567
|
export { IconDrawer1, default as IconDrawer1Default } from "./IconDrawer1";
|
|
567
568
|
export { IconDrawer2, default as IconDrawer2Default } from "./IconDrawer2";
|
|
568
569
|
export { IconDrawer3, default as IconDrawer3Default } from "./IconDrawer3";
|