@central-icons-react/square-filled-radius-0-stroke-1.5 1.1.15 → 1.1.16
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/IconBezierEdit/index.js +1 -1
- package/IconBezierEdit/index.js.map +1 -1
- package/IconBezierEdit/index.mjs +1 -1
- package/IconBezierEdit/index.mjs.map +1 -1
- package/IconTextEdit/index.js +1 -1
- package/IconTextEdit/index.js.map +1 -1
- package/IconTextEdit/index.mjs +1 -1
- package/IconTextEdit/index.mjs.map +1 -1
- package/LICENSE.md +4 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +1 -1
- 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/IconBezierEdit/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var C=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var g=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},i=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of f(r))!B.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=d(r,o))||n.enumerable});return e};var V=(e,r,t)=>(t=e!=null?C(u(e)):{},i(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),x=e=>i(l({},"__esModule",{value:!0}),e);var h={};g(h,{IconBezierEdit:()=>m,default:()=>I});module.exports=x(h);var p=V(require("react"));var a=V(require("react")),s=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:H,...c})=>a.default.createElement("svg",{...c,"aria-hidden":o,role:o?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:n,...H}},t&&!o&&a.default.createElement("title",null,t),e);var m=e=>p.default.createElement(s,{...e,ariaLabel:"bezier--edit"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.9697 13.6363C17.9069 12.6991 19.4264 12.6991 20.3637 13.6363C21.3009 14.5736 21.3009 16.0931 20.3637 17.0303L16.394 21H13V17.606L16.9697 13.6363Z",fill:"currentColor"}),p.default.createElement("path",{d:"M3 3V9H5.25V15H3V21H8.75V18.75H11V17.25H8.75V15H6.75V9H9V6.75H15V9H17.25V11H18.75V9H21V3H15V5.25H9V3H3Z",fill:"currentColor"})),I=m;0&&(module.exports={IconBezierEdit});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBezierEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBezierEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bezier--edit\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBezierEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBezierEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bezier--edit\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.9697 13.6363C17.9069 12.6991 19.4264 12.6991 20.3637 13.6363C21.3009 14.5736 21.3009 16.0931 20.3637 17.0303L16.394 21H13V17.606L16.9697 13.6363Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3 3V9H5.25V15H3V21H8.75V18.75H11V17.25H8.75V15H6.75V9H9V6.75H15V9H17.25V11H18.75V9H21V3H15V5.25H9V3H3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierEdit;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,wJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBezierEdit_exports","__export","IconBezierEdit","IconBezierEdit_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconBezierEdit","props","React","CentralIconBase","IconBezierEdit_default"]}
|
package/IconBezierEdit/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:V
|
|
1
|
+
import o from"react";import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...V})=>l.createElement("svg",{...V,"aria-hidden":t,role:t?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:a,...i}},n&&!t&&l.createElement("title",null,n),r);var s=r=>o.createElement(p,{...r,ariaLabel:"bezier--edit"},o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.9697 13.6363C17.9069 12.6991 19.4264 12.6991 20.3637 13.6363C21.3009 14.5736 21.3009 16.0931 20.3637 17.0303L16.394 21H13V17.606L16.9697 13.6363Z",fill:"currentColor"}),o.createElement("path",{d:"M3 3V9H5.25V15H3V21H8.75V18.75H11V17.25H8.75V15H6.75V9H9V6.75H15V9H17.25V11H18.75V9H21V3H15V5.25H9V3H3Z",fill:"currentColor"})),d=s;export{s as IconBezierEdit,d as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBezierEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBezierEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bezier--edit\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBezierEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBezierEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bezier--edit\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.9697 13.6363C17.9069 12.6991 19.4264 12.6991 20.3637 13.6363C21.3009 14.5736 21.3009 16.0931 20.3637 17.0303L16.394 21H13V17.606L16.9697 13.6363Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3 3V9H5.25V15H3V21H8.75V18.75H11V17.25H8.75V15H6.75V9H9V6.75H15V9H17.25V11H18.75V9H21V3H15V5.25H9V3H3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierEdit;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBezierEdit","props","React","CentralIconBase","IconBezierEdit_default"]}
|
package/IconTextEdit/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(t,r)=>{for(var e in r)p(t,e,{get:r[e],enumerable:!0})},s=(t,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of d(r))!h.call(t,o)&&o!==e&&p(t,o,{get:()=>r[o],enumerable:!(l=x(r,o))||l.enumerable});return t};var m=(t,r,e)=>(e=t!=null?u(g(t)):{},s(r||!t||!t.__esModule?p(e,"default",{value:t,enumerable:!0}):e,t)),I=t=>s(p({},"__esModule",{value:!0}),t);var w={};B(w,{IconTextEdit:()=>C,default:()=>V});module.exports=I(w);var n=m(require("react"));var a=m(require("react")),i=({children:t,size:r=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:c,...f})=>a.default.createElement("svg",{...f,"aria-hidden":o,role:o?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,...c}},e&&!o&&a.default.createElement("title",null,e),t);var C=t=>n.default.createElement(i,{...t,ariaLabel:"text-edit, prompts, comment"},n.default.createElement("path",{d:"M18.6121 3.
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(t,r)=>{for(var e in r)p(t,e,{get:r[e],enumerable:!0})},s=(t,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of d(r))!h.call(t,o)&&o!==e&&p(t,o,{get:()=>r[o],enumerable:!(l=x(r,o))||l.enumerable});return t};var m=(t,r,e)=>(e=t!=null?u(g(t)):{},s(r||!t||!t.__esModule?p(e,"default",{value:t,enumerable:!0}):e,t)),I=t=>s(p({},"__esModule",{value:!0}),t);var w={};B(w,{IconTextEdit:()=>C,default:()=>V});module.exports=I(w);var n=m(require("react"));var a=m(require("react")),i=({children:t,size:r=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:c,...f})=>a.default.createElement("svg",{...f,"aria-hidden":o,role:o?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,...c}},e&&!o&&a.default.createElement("title",null,e),t);var C=t=>n.default.createElement(i,{...t,ariaLabel:"text-edit, prompts, comment"},n.default.createElement("path",{d:"M18.6121 3.18945L7 14.8015V20.0001H12.1986L23.8107 8.38804L18.6121 3.18945Z",fill:"currentColor"}),n.default.createElement("path",{d:"M1 5.00011V6.50011H9.25C9.66421 6.50011 10 6.16433 10 5.75011C10 5.3359 9.66421 5.00011 9.25 5.00011H1Z",fill:"currentColor"}),n.default.createElement("path",{d:"M1 9.00011V10.5001H6.25C6.66421 10.5001 7 10.1643 7 9.75011C7 9.3359 6.66421 9.00011 6.25 9.00011H1Z",fill:"currentColor"})),V=C;0&&(module.exports={IconTextEdit});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTextEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-edit, prompts, comment\">\n <path\n d=\"M18.6121 3.
|
|
1
|
+
{"version":3,"sources":["../src/IconTextEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-edit, prompts, comment\">\n <path\n d=\"M18.6121 3.18945L7 14.8015V20.0001H12.1986L23.8107 8.38804L18.6121 3.18945Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1 5.00011V6.50011H9.25C9.66421 6.50011 10 6.16433 10 5.75011C10 5.3359 9.66421 5.00011 9.25 5.00011H1Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1 9.00011V10.5001H6.25C6.66421 10.5001 7 10.1643 7 9.75011C7 9.3359 6.66421 9.00011 6.25 9.00011H1Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTextEdit;\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,kBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0GACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTextEdit_exports","__export","IconTextEdit","IconTextEdit_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconTextEdit","props","React","CentralIconBase","IconTextEdit_default"]}
|
package/IconTextEdit/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import l from"react";var p=({children:e,size:t=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...m})=>l.createElement("svg",{...m,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!o&&l.createElement("title",null,n),e);var i=e=>r.createElement(p,{...e,ariaLabel:"text-edit, prompts, comment"},r.createElement("path",{d:"M18.6121 3.
|
|
1
|
+
import r from"react";import l from"react";var p=({children:e,size:t=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...m})=>l.createElement("svg",{...m,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!o&&l.createElement("title",null,n),e);var i=e=>r.createElement(p,{...e,ariaLabel:"text-edit, prompts, comment"},r.createElement("path",{d:"M18.6121 3.18945L7 14.8015V20.0001H12.1986L23.8107 8.38804L18.6121 3.18945Z",fill:"currentColor"}),r.createElement("path",{d:"M1 5.00011V6.50011H9.25C9.66421 6.50011 10 6.16433 10 5.75011C10 5.3359 9.66421 5.00011 9.25 5.00011H1Z",fill:"currentColor"}),r.createElement("path",{d:"M1 9.00011V10.5001H6.25C6.66421 10.5001 7 10.1643 7 9.75011C7 9.3359 6.66421 9.00011 6.25 9.00011H1Z",fill:"currentColor"})),x=i;export{i as IconTextEdit,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTextEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-edit, prompts, comment\">\n <path\n d=\"M18.6121 3.
|
|
1
|
+
{"version":3,"sources":["../src/IconTextEdit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextEdit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-edit, prompts, comment\">\n <path\n d=\"M18.6121 3.18945L7 14.8015V20.0001H12.1986L23.8107 8.38804L18.6121 3.18945Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1 5.00011V6.50011H9.25C9.66421 6.50011 10 6.16433 10 5.75011C10 5.3359 9.66421 5.00011 9.25 5.00011H1Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1 9.00011V10.5001H6.25C6.66421 10.5001 7 10.1643 7 9.75011C7 9.3359 6.66421 9.00011 6.25 9.00011H1Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTextEdit;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,8EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTextEdit","props","React","CentralIconBase","IconTextEdit_default"]}
|
package/LICENSE.md
CHANGED
|
@@ -20,6 +20,10 @@ We offer three license types for all our products, depending on your team size:
|
|
|
20
20
|
|
|
21
21
|
- For companies, unlimited users
|
|
22
22
|
|
|
23
|
+
### Ultimate License
|
|
24
|
+
|
|
25
|
+
- For companies, unlimited users
|
|
26
|
+
|
|
23
27
|
## Grant of License
|
|
24
28
|
|
|
25
29
|
Licensor grants Licensee a non-exclusive, non-transferable, worldwide right to use the Product, subject to the terms and conditions set forth in this Agreement.
|