@central-icons-react/round-filled-radius-0-stroke-1.5 0.0.43 → 0.0.44
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/IconTextareaDrag/index.d.ts +4 -0
- package/IconTextareaDrag/index.js +2 -0
- package/IconTextareaDrag/index.js.map +1 -0
- package/IconTextareaDrag/index.mjs +2 -0
- package/IconTextareaDrag/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +13 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +6 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var a=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of u(e))!I.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=x(e,o))||n.enumerable});return r};var C=(r,e,t)=>(t=r!=null?g(B(r)):{},s(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>s(a({},"__esModule",{value:!0}),r);var y={};d(y,{IconTextareaDrag:()=>c,default:()=>w});module.exports=h(y);var l=C(require("react"));var p=C(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...f})=>p.default.createElement("svg",{...f,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...i}},t&&!o&&p.default.createElement("title",null,t),r);var c=r=>l.default.createElement(m,{...r,ariaLabel:"textarea-drag"},l.default.createElement("path",{d:"M20.7197 6.21967C21.0126 5.92678 21.4874 5.92678 21.7803 6.21967C22.0732 6.51256 22.0732 6.98732 21.7803 7.28022L7.28028 21.7802C6.98738 22.0731 6.51262 22.0731 6.21973 21.7802C5.92684 21.4873 5.92684 21.0126 6.21973 20.7197L20.7197 6.21967ZM20.7197 14.2197C21.0126 13.9268 21.4874 13.9268 21.7803 14.2197C22.0732 14.5126 22.0732 14.9873 21.7803 15.2802L15.2803 21.7802C14.9874 22.0731 14.5126 22.0731 14.2197 21.7802C13.9268 21.4873 13.9268 21.0126 14.2197 20.7197L20.7197 14.2197Z",fill:"currentColor"})),w=c;0&&(module.exports={IconTextareaDrag});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTextareaDrag/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextareaDrag: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"textarea-drag\">\n <path\n d=\"M20.7197 6.21967C21.0126 5.92678 21.4874 5.92678 21.7803 6.21967C22.0732 6.51256 22.0732 6.98732 21.7803 7.28022L7.28028 21.7802C6.98738 22.0731 6.51262 22.0731 6.21973 21.7802C5.92684 21.4873 5.92684 21.0126 6.21973 20.7197L20.7197 6.21967ZM20.7197 14.2197C21.0126 13.9268 21.4874 13.9268 21.7803 14.2197C22.0732 14.5126 22.0732 14.9873 21.7803 15.2802L15.2803 21.7802C14.9874 22.0731 14.5126 22.0731 14.2197 21.7802C13.9268 21.4873 13.9268 21.0126 14.2197 20.7197L20.7197 14.2197Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTextareaDrag;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qeACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTextareaDrag_exports","__export","IconTextareaDrag","IconTextareaDrag_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconTextareaDrag","props","React","CentralIconBase","IconTextareaDrag_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import p from"react";import n from"react";var a=({children:e,size:r=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:s,...C})=>n.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},o&&!t&&n.createElement("title",null,o),e);var m=e=>p.createElement(a,{...e,ariaLabel:"textarea-drag"},p.createElement("path",{d:"M20.7197 6.21967C21.0126 5.92678 21.4874 5.92678 21.7803 6.21967C22.0732 6.51256 22.0732 6.98732 21.7803 7.28022L7.28028 21.7802C6.98738 22.0731 6.51262 22.0731 6.21973 21.7802C5.92684 21.4873 5.92684 21.0126 6.21973 20.7197L20.7197 6.21967ZM20.7197 14.2197C21.0126 13.9268 21.4874 13.9268 21.7803 14.2197C22.0732 14.5126 22.0732 14.9873 21.7803 15.2802L15.2803 21.7802C14.9874 22.0731 14.5126 22.0731 14.2197 21.7802C13.9268 21.4873 13.9268 21.0126 14.2197 20.7197L20.7197 14.2197Z",fill:"currentColor"})),x=m;export{m as IconTextareaDrag,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTextareaDrag/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextareaDrag: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"textarea-drag\">\n <path\n d=\"M20.7197 6.21967C21.0126 5.92678 21.4874 5.92678 21.7803 6.21967C22.0732 6.51256 22.0732 6.98732 21.7803 7.28022L7.28028 21.7802C6.98738 22.0731 6.51262 22.0731 6.21973 21.7802C5.92684 21.4873 5.92684 21.0126 6.21973 20.7197L20.7197 6.21967ZM20.7197 14.2197C21.0126 13.9268 21.4874 13.9268 21.7803 14.2197C22.0732 14.5126 22.0732 14.9873 21.7803 15.2802L15.2803 21.7802C14.9874 22.0731 14.5126 22.0731 14.2197 21.7802C13.9268 21.4873 13.9268 21.0126 14.2197 20.7197L20.7197 14.2197Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTextareaDrag;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,EAAE,qeACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTextareaDrag","props","React","CentralIconBase","IconTextareaDrag_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -17407,6 +17407,19 @@
|
|
|
17407
17407
|
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
17408
17408
|
"componentName": "IconText2"
|
|
17409
17409
|
},
|
|
17410
|
+
{
|
|
17411
|
+
"category": "Interface General",
|
|
17412
|
+
"svg": "<path d=\"M20.7197 6.21967C21.0126 5.92678 21.4874 5.92678 21.7803 6.21967C22.0732 6.51256 22.0732 6.98732 21.7803 7.28022L7.28028 21.7802C6.98738 22.0731 6.51262 22.0731 6.21973 21.7802C5.92684 21.4873 5.92684 21.0126 6.21973 20.7197L20.7197 6.21967ZM20.7197 14.2197C21.0126 13.9268 21.4874 13.9268 21.7803 14.2197C22.0732 14.5126 22.0732 14.9873 21.7803 15.2802L15.2803 21.7802C14.9874 22.0731 14.5126 22.0731 14.2197 21.7802C13.9268 21.4873 13.9268 21.0126 14.2197 20.7197L20.7197 14.2197Z\" fill=\"currentColor\"/>",
|
|
17413
|
+
"iconName": "textarea-drag",
|
|
17414
|
+
"variant": {
|
|
17415
|
+
"join": "round",
|
|
17416
|
+
"filled": "on",
|
|
17417
|
+
"radius": "0",
|
|
17418
|
+
"stroke": "1.5"
|
|
17419
|
+
},
|
|
17420
|
+
"packageName": "round-filled-radius-0-stroke-1.5",
|
|
17421
|
+
"componentName": "IconTextareaDrag"
|
|
17422
|
+
},
|
|
17410
17423
|
{
|
|
17411
17424
|
"category": "Typography",
|
|
17412
17425
|
"svg": "<path d=\"M3.75 4C3.33579 4 3 4.33579 3 4.75V9.25C3 9.66421 3.33579 10 3.75 10H8.25C8.66421 10 9 9.66421 9 9.25V4.75C9 4.33579 8.66421 4 8.25 4H3.75Z\" fill=\"currentColor\"/><path d=\"M12.75 4.5C12.3358 4.5 12 4.83579 12 5.25C12 5.66421 12.3358 6 12.75 6H20.25C20.6642 6 21 5.66421 21 5.25C21 4.83579 20.6642 4.5 20.25 4.5H12.75Z\" fill=\"currentColor\"/><path d=\"M12.75 8C12.3358 8 12 8.33579 12 8.75C12 9.16421 12.3358 9.5 12.75 9.5H17.25C17.6642 9.5 18 9.16421 18 8.75C18 8.33579 17.6642 8 17.25 8H12.75Z\" fill=\"currentColor\"/><path d=\"M3.75 14C3.33579 14 3 14.3358 3 14.75V19.25C3 19.6642 3.33579 20 3.75 20H8.25C8.66421 20 9 19.6642 9 19.25V14.75C9 14.3358 8.66421 14 8.25 14H3.75Z\" fill=\"currentColor\"/><path d=\"M12.75 14.5C12.3358 14.5 12 14.8358 12 15.25C12 15.6642 12.3358 16 12.75 16H20.25C20.6642 16 21 15.6642 21 15.25C21 14.8358 20.6642 14.5 20.25 14.5H12.75Z\" fill=\"currentColor\"/><path d=\"M12.75 18C12.3358 18 12 18.3358 12 18.75C12 19.1642 12.3358 19.5 12.75 19.5H17.25C17.6642 19.5 18 19.1642 18 18.75C18 18.3358 17.6642 18 17.25 18H12.75Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react/round-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react/round-filled-radius-0-stroke-1.5/IconHome';",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
13
13
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
14
14
|
},
|
|
15
|
-
"totalIcons":
|
|
15
|
+
"totalIcons": 1487,
|
|
16
16
|
"categories": {
|
|
17
17
|
"AI & Magic": {
|
|
18
18
|
"count": 32,
|
|
@@ -715,7 +715,7 @@
|
|
|
715
715
|
]
|
|
716
716
|
},
|
|
717
717
|
"Interface General": {
|
|
718
|
-
"count":
|
|
718
|
+
"count": 159,
|
|
719
719
|
"icons": [
|
|
720
720
|
"IconAnchor1",
|
|
721
721
|
"IconAnchor2",
|
|
@@ -859,6 +859,7 @@
|
|
|
859
859
|
"IconTarget2",
|
|
860
860
|
"IconTargetArrow",
|
|
861
861
|
"IconTasks",
|
|
862
|
+
"IconTextareaDrag",
|
|
862
863
|
"IconThumbtack",
|
|
863
864
|
"IconTodos",
|
|
864
865
|
"IconTrashCan",
|
|
@@ -3011,6 +3012,7 @@
|
|
|
3011
3012
|
"IconTestTube": "test-tube",
|
|
3012
3013
|
"IconText1": "text-1",
|
|
3013
3014
|
"IconText2": "text-2",
|
|
3015
|
+
"IconTextareaDrag": "textarea-drag",
|
|
3014
3016
|
"IconTextBlock": "text-block",
|
|
3015
3017
|
"IconTextColor": "text-color",
|
|
3016
3018
|
"IconTextEdit": "text-edit, prompts, comment",
|