@central-icons-react/square-filled-radius-0-stroke-1 1.1.41 → 1.1.42
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/IconDoupleCheckmark2Small/index.d.ts +4 -0
- package/IconDoupleCheckmark2Small/index.js +2 -0
- package/IconDoupleCheckmark2Small/index.js.map +1 -0
- package/IconDoupleCheckmark2Small/index.mjs +2 -0
- package/IconDoupleCheckmark2Small/index.mjs.map +1 -0
- package/IconPencil/index.js +1 -1
- package/IconPencil/index.js.map +1 -1
- package/IconPencil/index.mjs +1 -1
- package/IconPencil/index.mjs.map +1 -1
- package/IconPencilWave/index.js +1 -1
- package/IconPencilWave/index.js.map +1 -1
- package/IconPencilWave/index.mjs +1 -1
- package/IconPencilWave/index.mjs.map +1 -1
- package/IconWrite1/index.js +1 -1
- package/IconWrite1/index.js.map +1 -1
- package/IconWrite1/index.mjs +1 -1
- package/IconWrite1/index.mjs.map +1 -1
- package/IconWriting/index.js +1 -1
- package/IconWriting/index.js.map +1 -1
- package/IconWriting/index.mjs +1 -1
- package/IconWriting/index.mjs.map +1 -1
- package/README.md +1 -0
- package/icons/index.d.ts +1 -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 +5 -3
- package/index.d.ts +4 -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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var l=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},s=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of g(r))!x.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=f(r,o))||n.enumerable});return e};var m=(e,r,t)=>(t=e!=null?C(h(e)):{},s(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>s(l({},"__esModule",{value:!0}),e);var w={};B(w,{IconDoupleCheckmark2Small:()=>c,default:()=>d});module.exports=I(w);var p=m(require("react"));var a=m(require("react")),L=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...u})=>a.default.createElement("svg",{...u,"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,...i}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>p.default.createElement(L,{...e,ariaLabel:"douple-checkmark-2-small"},p.default.createElement("path",{d:"M15.2051 7.95312L14.876 8.3291L7.87598 16.3291L7.52441 16.7314L3.79297 13L4.5 12.293L7.47559 15.2686L14.124 7.6709L14.4531 7.29492L15.2051 7.95312ZM20.2051 7.95312L19.876 8.3291L12.876 16.3291L12.5469 16.7051L11.7949 16.0469L12.124 15.6709L19.124 7.6709L19.4531 7.29492L20.2051 7.95312Z",fill:"currentColor"})),d=c;0&&(module.exports={IconDoupleCheckmark2Small});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark2Small/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDoupleCheckmark2Small: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"douple-checkmark-2-small\">\n <path\n d=\"M15.2051 7.95312L14.876 8.3291L7.87598 16.3291L7.52441 16.7314L3.79297 13L4.5 12.293L7.47559 15.2686L14.124 7.6709L14.4531 7.29492L15.2051 7.95312ZM20.2051 7.95312L19.876 8.3291L12.876 16.3291L12.5469 16.7051L11.7949 16.0469L12.124 15.6709L19.124 7.6709L19.4531 7.29492L20.2051 7.95312Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark2Small;\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,+BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDoupleCheckmark2Small_exports","__export","IconDoupleCheckmark2Small","IconDoupleCheckmark2Small_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconDoupleCheckmark2Small","props","React","CentralIconBase","IconDoupleCheckmark2Small_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import a from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:s,...m})=>n.createElement("svg",{...m,"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:p,...s}},o&&!t&&n.createElement("title",null,o),r);var L=r=>a.createElement(l,{...r,ariaLabel:"douple-checkmark-2-small"},a.createElement("path",{d:"M15.2051 7.95312L14.876 8.3291L7.87598 16.3291L7.52441 16.7314L3.79297 13L4.5 12.293L7.47559 15.2686L14.124 7.6709L14.4531 7.29492L15.2051 7.95312ZM20.2051 7.95312L19.876 8.3291L12.876 16.3291L12.5469 16.7051L11.7949 16.0469L12.124 15.6709L19.124 7.6709L19.4531 7.29492L20.2051 7.95312Z",fill:"currentColor"})),f=L;export{L as IconDoupleCheckmark2Small,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDoupleCheckmark2Small/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDoupleCheckmark2Small: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"douple-checkmark-2-small\">\n <path\n d=\"M15.2051 7.95312L14.876 8.3291L7.87598 16.3291L7.52441 16.7314L3.79297 13L4.5 12.293L7.47559 15.2686L14.124 7.6709L14.4531 7.29492L15.2051 7.95312ZM20.2051 7.95312L19.876 8.3291L12.876 16.3291L12.5469 16.7051L11.7949 16.0469L12.124 15.6709L19.124 7.6709L19.4531 7.29492L20.2051 7.95312Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDoupleCheckmark2Small;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDoupleCheckmark2Small","props","React","CentralIconBase","IconDoupleCheckmark2Small_default"]}
|
package/IconPencil/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var l=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of x(e))!I.call(r,o)&&o!==t&&l(r,o,{get:()=>e[o],enumerable:!(n=g(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?u(B(r)):{},s(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(l({},"__esModule",{value:!0}),r);var w={};L(w,{IconPencil:()=>m,default:()=>h});module.exports=d(w);var p=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...C})=>a.default.createElement("svg",{...C,"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,...f}},t&&!o&&a.default.createElement("title",null,t),r);var m=r=>p.default.createElement(c,{...r,ariaLabel:"pencil, edit, write"},p.default.createElement("path",{d:"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z",fill:"currentColor"}),p.default.createElement("path",{d:"M12.7929
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of x(e))!I.call(r,o)&&o!==t&&l(r,o,{get:()=>e[o],enumerable:!(n=g(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?u(B(r)):{},s(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(l({},"__esModule",{value:!0}),r);var w={};L(w,{IconPencil:()=>m,default:()=>h});module.exports=d(w);var p=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...C})=>a.default.createElement("svg",{...C,"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,...f}},t&&!o&&a.default.createElement("title",null,t),r);var m=r=>p.default.createElement(c,{...r,ariaLabel:"pencil, edit, write"},p.default.createElement("path",{d:"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z",fill:"currentColor"}),p.default.createElement("path",{d:"M12.7929 6L2 16.7929V22H7.20711L18 11.2071L12.7929 6Z",fill:"currentColor"})),h=m;0&&(module.exports={IconPencil});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconPencil/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPencil/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencil: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil, edit, write\">\n <path\n d=\"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7929
|
|
1
|
+
{"version":3,"sources":["../src/IconPencil/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencil: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil, edit, write\">\n <path\n d=\"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7929 6L2 16.7929V22H7.20711L18 11.2071L12.7929 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,uEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPencil_exports","__export","IconPencil","IconPencil_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPencil","props","React","CentralIconBase","IconPencil_default"]}
|
package/IconPencil/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:s,...i})=>l.createElement("svg",{...i,"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:a,...s}},n&&!t&&l.createElement("title",null,n),e);var c=e=>o.createElement(p,{...e,ariaLabel:"pencil, edit, write"},o.createElement("path",{d:"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z",fill:"currentColor"}),o.createElement("path",{d:"M12.7929
|
|
1
|
+
import o from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:s,...i})=>l.createElement("svg",{...i,"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:a,...s}},n&&!t&&l.createElement("title",null,n),e);var c=e=>o.createElement(p,{...e,ariaLabel:"pencil, edit, write"},o.createElement("path",{d:"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z",fill:"currentColor"}),o.createElement("path",{d:"M12.7929 6L2 16.7929V22H7.20711L18 11.2071L12.7929 6Z",fill:"currentColor"})),g=c;export{c as IconPencil,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconPencil/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPencil/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencil: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil, edit, write\">\n <path\n d=\"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7929
|
|
1
|
+
{"version":3,"sources":["../src/IconPencil/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencil: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil, edit, write\">\n <path\n d=\"M17 1.79285L22.2071 6.99995L18.7071 10.4999L13.5 5.29284L17 1.79285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7929 6L2 16.7929V22H7.20711L18 11.2071L12.7929 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,uEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPencil","props","React","CentralIconBase","IconPencil_default"]}
|
package/IconPencilWave/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var
|
|
1
|
+
"use strict";var f=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},a=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of g(r))!B.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=u(r,o))||n.enumerable});return e};var s=(e,r,t)=>(t=e!=null?f(x(e)):{},a(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),h=e=>a(l({},"__esModule",{value:!0}),e);var P={};I(P,{IconPencilWave:()=>i,default:()=>w});module.exports=h(P);var C=s(require("react"));var p=s(require("react")),L=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...m})=>p.default.createElement("svg",{...m,"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,...c}},t&&!o&&p.default.createElement("title",null,t),e);var i=e=>C.default.createElement(L,{...e,ariaLabel:"pencil-wave"},C.default.createElement("path",{d:"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z",fill:"currentColor"}),C.default.createElement("path",{d:"M21.6652 18.0273L21.6662 18.0258L21.9424 17.609L21.1088 17.0566L20.8332 17.4726L20.8324 17.4737L20.8256 17.4837C20.8188 17.4934 20.8077 17.509 20.7923 17.5298C20.7616 17.5715 20.7141 17.6333 20.6509 17.7087C20.524 17.8601 20.3365 18.0624 20.0965 18.2639C19.6112 18.6716 18.9508 19.044 18.1655 19.044C17.3572 19.044 16.778 18.7461 16.1659 18.3955C16.1226 18.3706 16.0787 18.3453 16.0342 18.3195L16.033 18.3188C15.4721 17.9944 14.8155 17.6146 13.986 17.6146C12.2962 17.6146 11.1531 18.5485 10.1311 19.6614L9.79297 20.0297L10.5295 20.7061L10.8677 20.3378C11.8387 19.2803 12.7304 18.6146 13.986 18.6146C14.5385 18.6146 14.9728 18.8638 15.5865 19.216L15.6689 19.2632C16.3045 19.6273 17.0787 20.044 18.1655 20.044C19.2752 20.044 20.1568 19.5192 20.7397 19.0297C21.0338 18.7826 21.262 18.5363 21.4172 18.3513C21.495 18.2584 21.5553 18.1801 21.597 18.1236C21.6178 18.0954 21.6341 18.0725 21.6457 18.0559L21.6595 18.0358L21.6638 18.0295L21.6652 18.0273Z",fill:"currentColor"})),w=i;0&&(module.exports={IconPencilWave});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPencilWave/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencilWave: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil-wave\">\n <path\n d=\"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.
|
|
1
|
+
{"version":3,"sources":["../src/IconPencilWave/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencilWave: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil-wave\">\n <path\n d=\"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.6652 18.0273L21.6662 18.0258L21.9424 17.609L21.1088 17.0566L20.8332 17.4726L20.8324 17.4737L20.8256 17.4837C20.8188 17.4934 20.8077 17.509 20.7923 17.5298C20.7616 17.5715 20.7141 17.6333 20.6509 17.7087C20.524 17.8601 20.3365 18.0624 20.0965 18.2639C19.6112 18.6716 18.9508 19.044 18.1655 19.044C17.3572 19.044 16.778 18.7461 16.1659 18.3955C16.1226 18.3706 16.0787 18.3453 16.0342 18.3195L16.033 18.3188C15.4721 17.9944 14.8155 17.6146 13.986 17.6146C12.2962 17.6146 11.1531 18.5485 10.1311 19.6614L9.79297 20.0297L10.5295 20.7061L10.8677 20.3378C11.8387 19.2803 12.7304 18.6146 13.986 18.6146C14.5385 18.6146 14.9728 18.8638 15.5865 19.216L15.6689 19.2632C16.3045 19.6273 17.0787 20.044 18.1655 20.044C19.2752 20.044 20.1568 19.5192 20.7397 19.0297C21.0338 18.7826 21.262 18.5363 21.4172 18.3513C21.495 18.2584 21.5553 18.1801 21.597 18.1236C21.6178 18.0954 21.6341 18.0725 21.6457 18.0559L21.6595 18.0358L21.6638 18.0295L21.6652 18.0273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencilWave;\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,eACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,m7BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPencilWave_exports","__export","IconPencilWave","IconPencilWave_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPencilWave","props","React","CentralIconBase","IconPencilWave_default"]}
|
package/IconPencilWave/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import
|
|
1
|
+
import o from"react";import l from"react";var C=({children:r,size:e=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...s})=>l.createElement("svg",{...s,"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:p,...a}},n&&!t&&l.createElement("title",null,n),r);var L=r=>o.createElement(C,{...r,ariaLabel:"pencil-wave"},o.createElement("path",{d:"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z",fill:"currentColor"}),o.createElement("path",{d:"M21.6652 18.0273L21.6662 18.0258L21.9424 17.609L21.1088 17.0566L20.8332 17.4726L20.8324 17.4737L20.8256 17.4837C20.8188 17.4934 20.8077 17.509 20.7923 17.5298C20.7616 17.5715 20.7141 17.6333 20.6509 17.7087C20.524 17.8601 20.3365 18.0624 20.0965 18.2639C19.6112 18.6716 18.9508 19.044 18.1655 19.044C17.3572 19.044 16.778 18.7461 16.1659 18.3955C16.1226 18.3706 16.0787 18.3453 16.0342 18.3195L16.033 18.3188C15.4721 17.9944 14.8155 17.6146 13.986 17.6146C12.2962 17.6146 11.1531 18.5485 10.1311 19.6614L9.79297 20.0297L10.5295 20.7061L10.8677 20.3378C11.8387 19.2803 12.7304 18.6146 13.986 18.6146C14.5385 18.6146 14.9728 18.8638 15.5865 19.216L15.6689 19.2632C16.3045 19.6273 17.0787 20.044 18.1655 20.044C19.2752 20.044 20.1568 19.5192 20.7397 19.0297C21.0338 18.7826 21.262 18.5363 21.4172 18.3513C21.495 18.2584 21.5553 18.1801 21.597 18.1236C21.6178 18.0954 21.6341 18.0725 21.6457 18.0559L21.6595 18.0358L21.6638 18.0295L21.6652 18.0273Z",fill:"currentColor"})),u=L;export{L as IconPencilWave,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPencilWave/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencilWave: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil-wave\">\n <path\n d=\"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.
|
|
1
|
+
{"version":3,"sources":["../src/IconPencilWave/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencilWave: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pencil-wave\">\n <path\n d=\"M16.75 2.04297L20.9571 6.25008L6.20711 21.0001H2V16.793L16.75 2.04297Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.6652 18.0273L21.6662 18.0258L21.9424 17.609L21.1088 17.0566L20.8332 17.4726L20.8324 17.4737L20.8256 17.4837C20.8188 17.4934 20.8077 17.509 20.7923 17.5298C20.7616 17.5715 20.7141 17.6333 20.6509 17.7087C20.524 17.8601 20.3365 18.0624 20.0965 18.2639C19.6112 18.6716 18.9508 19.044 18.1655 19.044C17.3572 19.044 16.778 18.7461 16.1659 18.3955C16.1226 18.3706 16.0787 18.3453 16.0342 18.3195L16.033 18.3188C15.4721 17.9944 14.8155 17.6146 13.986 17.6146C12.2962 17.6146 11.1531 18.5485 10.1311 19.6614L9.79297 20.0297L10.5295 20.7061L10.8677 20.3378C11.8387 19.2803 12.7304 18.6146 13.986 18.6146C14.5385 18.6146 14.9728 18.8638 15.5865 19.216L15.6689 19.2632C16.3045 19.6273 17.0787 20.044 18.1655 20.044C19.2752 20.044 20.1568 19.5192 20.7397 19.0297C21.0338 18.7826 21.262 18.5363 21.4172 18.3513C21.495 18.2584 21.5553 18.1801 21.597 18.1236C21.6178 18.0954 21.6341 18.0725 21.6457 18.0559L21.6595 18.0358L21.6638 18.0295L21.6652 18.0273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencilWave;\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,eACpCC,EAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,m7BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPencilWave","props","React","CentralIconBase","IconPencilWave_default"]}
|
package/IconWrite1/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,t)=>{for(var e in t)p(r,e,{get:t[e],enumerable:!0})},C=(r,t,e,l)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!x.call(r,o)&&o!==e&&p(r,o,{get:()=>t[o],enumerable:!(l=L(t,o))||l.enumerable});return r};var s=(r,t,e)=>(e=r!=null?u(h(r)):{},C(t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var w={};B(w,{IconWrite1:()=>m,default:()=>d});module.exports=I(w);var n=s(require("react"));var a=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:f,...c})=>a.default.createElement("svg",{...c,"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:l,...f}},e&&!o&&a.default.createElement("title",null,e),r);var m=r=>n.default.createElement(i,{...r,ariaLabel:"write-1, fountain-pen"},n.default.createElement("path",{d:"M11.
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,t)=>{for(var e in t)p(r,e,{get:t[e],enumerable:!0})},C=(r,t,e,l)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!x.call(r,o)&&o!==e&&p(r,o,{get:()=>t[o],enumerable:!(l=L(t,o))||l.enumerable});return r};var s=(r,t,e)=>(e=r!=null?u(h(r)):{},C(t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var w={};B(w,{IconWrite1:()=>m,default:()=>d});module.exports=I(w);var n=s(require("react"));var a=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:f,...c})=>a.default.createElement("svg",{...c,"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:l,...f}},e&&!o&&a.default.createElement("title",null,e),r);var m=r=>n.default.createElement(i,{...r,ariaLabel:"write-1, fountain-pen"},n.default.createElement("path",{d:"M11.9824 5.27438L18.7267 12.0187L22.2453 8.50018L15.5009 1.75586L11.9824 5.27438Z",fill:"currentColor"}),n.default.createElement("path",{d:"M18.2253 12.9324L11.0678 5.7749L5.90917 7.43478L3.29102 20.0019L8.39675 14.8962C8.13463 14.5008 7.98196 14.0265 7.98196 13.5166C7.98196 12.1359 9.10125 11.0166 10.482 11.0166C11.8627 11.0166 12.982 12.1359 12.982 13.5166C12.982 14.8973 11.8627 16.0166 10.482 16.0166C9.9728 16.0166 9.49919 15.8644 9.10415 15.603L3.99785 20.7093L16.5654 18.0911L18.2253 12.9324Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8.98242 13.5166C8.98242 12.6882 9.65399 12.0166 10.4824 12.0166C11.3108 12.0166 11.9824 12.6882 11.9824 13.5166C11.9824 14.345 11.3108 15.0166 10.4824 15.0166C9.65399 15.0166 8.98242 14.345 8.98242 13.5166Z",fill:"currentColor"})),d=m;0&&(module.exports={IconWrite1});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconWrite1/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWrite1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWrite1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"write-1, fountain-pen\">\n <path\n d=\"M11.
|
|
1
|
+
{"version":3,"sources":["../src/IconWrite1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWrite1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"write-1, fountain-pen\">\n <path\n d=\"M11.9824 5.27438L18.7267 12.0187L22.2453 8.50018L15.5009 1.75586L11.9824 5.27438Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.2253 12.9324L11.0678 5.7749L5.90917 7.43478L3.29102 20.0019L8.39675 14.8962C8.13463 14.5008 7.98196 14.0265 7.98196 13.5166C7.98196 12.1359 9.10125 11.0166 10.482 11.0166C11.8627 11.0166 12.982 12.1359 12.982 13.5166C12.982 14.8973 11.8627 16.0166 10.482 16.0166C9.9728 16.0166 9.49919 15.8644 9.10415 15.603L3.99785 20.7093L16.5654 18.0911L18.2253 12.9324Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.98242 13.5166C8.98242 12.6882 9.65399 12.0166 10.4824 12.0166C11.3108 12.0166 11.9824 12.6882 11.9824 13.5166C11.9824 14.345 11.3108 15.0166 10.4824 15.0166C9.65399 15.0166 8.98242 14.345 8.98242 13.5166Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWrite1;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4WACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconWrite1_exports","__export","IconWrite1","IconWrite1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconWrite1","props","React","CentralIconBase","IconWrite1_default"]}
|
package/IconWrite1/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import t from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:C,...s})=>l.createElement("svg",{...s,"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:a,...C}},n&&!o&&l.createElement("title",null,n),e);var i=e=>t.createElement(p,{...e,ariaLabel:"write-1, fountain-pen"},t.createElement("path",{d:"M11.
|
|
1
|
+
import t from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:C,...s})=>l.createElement("svg",{...s,"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:a,...C}},n&&!o&&l.createElement("title",null,n),e);var i=e=>t.createElement(p,{...e,ariaLabel:"write-1, fountain-pen"},t.createElement("path",{d:"M11.9824 5.27438L18.7267 12.0187L22.2453 8.50018L15.5009 1.75586L11.9824 5.27438Z",fill:"currentColor"}),t.createElement("path",{d:"M18.2253 12.9324L11.0678 5.7749L5.90917 7.43478L3.29102 20.0019L8.39675 14.8962C8.13463 14.5008 7.98196 14.0265 7.98196 13.5166C7.98196 12.1359 9.10125 11.0166 10.482 11.0166C11.8627 11.0166 12.982 12.1359 12.982 13.5166C12.982 14.8973 11.8627 16.0166 10.482 16.0166C9.9728 16.0166 9.49919 15.8644 9.10415 15.603L3.99785 20.7093L16.5654 18.0911L18.2253 12.9324Z",fill:"currentColor"}),t.createElement("path",{d:"M8.98242 13.5166C8.98242 12.6882 9.65399 12.0166 10.4824 12.0166C11.3108 12.0166 11.9824 12.6882 11.9824 13.5166C11.9824 14.345 11.3108 15.0166 10.4824 15.0166C9.65399 15.0166 8.98242 14.345 8.98242 13.5166Z",fill:"currentColor"})),L=i;export{i as IconWrite1,L as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconWrite1/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWrite1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWrite1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"write-1, fountain-pen\">\n <path\n d=\"M11.
|
|
1
|
+
{"version":3,"sources":["../src/IconWrite1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWrite1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"write-1, fountain-pen\">\n <path\n d=\"M11.9824 5.27438L18.7267 12.0187L22.2453 8.50018L15.5009 1.75586L11.9824 5.27438Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.2253 12.9324L11.0678 5.7749L5.90917 7.43478L3.29102 20.0019L8.39675 14.8962C8.13463 14.5008 7.98196 14.0265 7.98196 13.5166C7.98196 12.1359 9.10125 11.0166 10.482 11.0166C11.8627 11.0166 12.982 12.1359 12.982 13.5166C12.982 14.8973 11.8627 16.0166 10.482 16.0166C9.9728 16.0166 9.49919 15.8644 9.10415 15.603L3.99785 20.7093L16.5654 18.0911L18.2253 12.9324Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.98242 13.5166C8.98242 12.6882 9.65399 12.0166 10.4824 12.0166C11.3108 12.0166 11.9824 12.6882 11.9824 13.5166C11.9824 14.345 11.3108 15.0166 10.4824 15.0166C9.65399 15.0166 8.98242 14.345 8.98242 13.5166Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWrite1;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconWrite1","props","React","CentralIconBase","IconWrite1_default"]}
|
package/IconWriting/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var g=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,t)=>{for(var e in t)l(r,e,{get:t[e],enumerable:!0})},C=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of x(t))!I.call(r,o)&&o!==e&&l(r,o,{get:()=>t[o],enumerable:!(n=u(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?g(B(r)):{},C(t||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),w=r=>C(l({},"__esModule",{value:!0}),r);var d={};h(d,{IconWriting:()=>m,default:()=>V});module.exports=w(d);var p=s(require("react"));var a=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:c,...f})=>a.default.createElement("svg",{...f,"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:n,...c}},e&&!o&&a.default.createElement("title",null,e),r);var m=r=>p.default.createElement(i,{...r,ariaLabel:"writing"},p.default.createElement("path",{d:"M18.
|
|
1
|
+
"use strict";var g=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,t)=>{for(var e in t)l(r,e,{get:t[e],enumerable:!0})},C=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of x(t))!I.call(r,o)&&o!==e&&l(r,o,{get:()=>t[o],enumerable:!(n=u(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?g(B(r)):{},C(t||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),w=r=>C(l({},"__esModule",{value:!0}),r);var d={};h(d,{IconWriting:()=>m,default:()=>V});module.exports=w(d);var p=s(require("react"));var a=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:c,...f})=>a.default.createElement("svg",{...f,"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:n,...c}},e&&!o&&a.default.createElement("title",null,e),r);var m=r=>p.default.createElement(i,{...r,ariaLabel:"writing"},p.default.createElement("path",{d:"M18.5 1.79297L11 9.29297V13.0001H14.7071L22.2071 5.50008L18.5 1.79297Z",fill:"currentColor"}),p.default.createElement("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 20H11V21H16.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 13H9V12H5.5Z",fill:"currentColor"})),V=m;0&&(module.exports={IconWriting});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconWriting/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWriting/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWriting: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"writing\">\n <path\n d=\"M18.
|
|
1
|
+
{"version":3,"sources":["../src/IconWriting/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWriting: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"writing\">\n <path\n d=\"M18.5 1.79297L11 9.29297V13.0001H14.7071L22.2071 5.50008L18.5 1.79297Z\"\n fill=\"currentColor\"\n />\n <path\n 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 20H11V21H16.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 13H9V12H5.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWriting;\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,iBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconWriting_exports","__export","IconWriting","IconWriting_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconWriting","props","React","CentralIconBase","IconWriting_default"]}
|
package/IconWriting/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:C,...s})=>l.createElement("svg",{...s,"aria-hidden":e,role:e?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:a,...C}},n&&!e&&l.createElement("title",null,n),t);var i=t=>o.createElement(p,{...t,ariaLabel:"writing"},o.createElement("path",{d:"M18.
|
|
1
|
+
import o from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:C,...s})=>l.createElement("svg",{...s,"aria-hidden":e,role:e?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:a,...C}},n&&!e&&l.createElement("title",null,n),t);var i=t=>o.createElement(p,{...t,ariaLabel:"writing"},o.createElement("path",{d:"M18.5 1.79297L11 9.29297V13.0001H14.7071L22.2071 5.50008L18.5 1.79297Z",fill:"currentColor"}),o.createElement("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 20H11V21H16.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 13H9V12H5.5Z",fill:"currentColor"})),u=i;export{i as IconWriting,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWriting/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWriting: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"writing\">\n <path\n d=\"M18.
|
|
1
|
+
{"version":3,"sources":["../src/IconWriting/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWriting: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"writing\">\n <path\n d=\"M18.5 1.79297L11 9.29297V13.0001H14.7071L22.2071 5.50008L18.5 1.79297Z\"\n fill=\"currentColor\"\n />\n <path\n 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 20H11V21H16.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 13H9V12H5.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWriting;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconWriting","props","React","CentralIconBase","IconWriting_default"]}
|
package/README.md
CHANGED