@central-icons-react/round-outlined-radius-0-stroke-1.5 0.0.60 → 1.0.0
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/Icon3dBoxBottom/index.d.ts +4 -0
- package/Icon3dBoxBottom/index.js +2 -0
- package/Icon3dBoxBottom/index.js.map +1 -0
- package/Icon3dBoxBottom/index.mjs +2 -0
- package/Icon3dBoxBottom/index.mjs.map +1 -0
- package/IconFlashcards/index.d.ts +4 -0
- package/IconFlashcards/index.js +2 -0
- package/IconFlashcards/index.js.map +1 -0
- package/IconFlashcards/index.mjs +2 -0
- package/IconFlashcards/index.mjs.map +1 -0
- package/IconPaintBrush/index.d.ts +4 -0
- package/IconPaintBrush/index.js +2 -0
- package/IconPaintBrush/index.js.map +1 -0
- package/IconPaintBrush/index.mjs +2 -0
- package/IconPaintBrush/index.mjs.map +1 -0
- package/IconPaintBucket/index.d.ts +4 -0
- package/IconPaintBucket/index.js +2 -0
- package/IconPaintBucket/index.js.map +1 -0
- package/IconPaintBucket/index.mjs +2 -0
- package/IconPaintBucket/index.mjs.map +1 -0
- package/IconPaintBucketDrop/index.d.ts +4 -0
- package/IconPaintBucketDrop/index.js +2 -0
- package/IconPaintBucketDrop/index.js.map +1 -0
- package/IconPaintBucketDrop/index.mjs +2 -0
- package/IconPaintBucketDrop/index.mjs.map +1 -0
- package/README.md +5 -0
- package/icons/index.d.ts +5 -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 +15 -5
- 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 s=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var f=(o,r)=>{for(var t in r)s(o,t,{get:r[t],enumerable:!0})},l=(o,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of h(r))!B.call(o,e)&&e!==t&&s(o,e,{get:()=>r[e],enumerable:!(n=L(r,e))||n.enumerable});return o};var i=(o,r,t)=>(t=o!=null?C(x(o)):{},l(r||!o||!o.__esModule?s(t,"default",{value:o,enumerable:!0}):t,o)),g=o=>l(s({},"__esModule",{value:!0}),o);var I={};f(I,{Icon3dBoxBottom:()=>d,default:()=>k});module.exports=g(I);var p=i(require("react"));var a=i(require("react")),m=({children:o,size:r=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:c,...u})=>a.default.createElement("svg",{...u,"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:n,...c}},t&&!e&&a.default.createElement("title",null,t),o);var d=o=>p.default.createElement(m,{...o,ariaLabel:"3d-box-bottom, shaders, model, room"},p.default.createElement("path",{d:"M11.9998 22.25L20.8766 17.125V6.875L11.9998 1.75L3.12305 6.875V17.125L11.9998 22.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement("path",{d:"M3.12305 17.125L11.9998 12M11.9998 12V1.75M11.9998 12L20.8766 17.125",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),k=d;0&&(module.exports={Icon3dBoxBottom});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dBoxBottom/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const Icon3dBoxBottom: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"3d-box-bottom, shaders, model, room\">\n <path\n d=\"M11.9998 22.25L20.8766 17.125V6.875L11.9998 1.75L3.12305 6.875V17.125L11.9998 22.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.12305 17.125L11.9998 12M11.9998 12V1.75M11.9998 12L20.8766 17.125\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,uFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["Icon3dBoxBottom_exports","__export","Icon3dBoxBottom","Icon3dBoxBottom_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import e from"react";import s from"react";var p=({children:r,size:o=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:l,...i})=>s.createElement("svg",{...i,"aria-hidden":t,role:t?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...l}},n&&!t&&s.createElement("title",null,n),r);var m=r=>e.createElement(p,{...r,ariaLabel:"3d-box-bottom, shaders, model, room"},e.createElement("path",{d:"M11.9998 22.25L20.8766 17.125V6.875L11.9998 1.75L3.12305 6.875V17.125L11.9998 22.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M3.12305 17.125L11.9998 12M11.9998 12V1.75M11.9998 12L20.8766 17.125",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),L=m;export{m as Icon3dBoxBottom,L as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dBoxBottom/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const Icon3dBoxBottom: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"3d-box-bottom, shaders, model, room\">\n <path\n d=\"M11.9998 22.25L20.8766 17.125V6.875L11.9998 1.75L3.12305 6.875V17.125L11.9998 22.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.12305 17.125L11.9998 12M11.9998 12V1.75M11.9998 12L20.8766 17.125\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,uFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,uEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var L=Object.create;var s=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var k=(r,e)=>{for(var o in e)s(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of C(e))!g.call(r,t)&&t!==o&&s(r,t,{get:()=>e[t],enumerable:!(n=h(e,t))||n.enumerable});return r};var i=(r,e,o)=>(o=r!=null?L(f(r)):{},l(e||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o,r)),x=r=>l(s({},"__esModule",{value:!0}),r);var I={};k(I,{IconFlashcards:()=>d,default:()=>B});module.exports=x(I);var a=i(require("react"));var p=i(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...u})=>p.default.createElement("svg",{...u,"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:n,...m}},o&&!t&&p.default.createElement("title",null,o),r);var d=r=>a.default.createElement(c,{...r,ariaLabel:"flashcards, cards, pages"},a.default.createElement("path",{d:"M10.625 7.17745L11.0641 3L21.0093 4.04528L19.6504 16.9741L14.0021 16.3804",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M2.95312 8.04528L12.8983 7L14.2572 19.9288L4.312 20.9741L2.95312 8.04528Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=d;0&&(module.exports={IconFlashcards});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconFlashcards/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFlashcards: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"flashcards, cards, pages\">\n <path\n d=\"M10.625 7.17745L11.0641 3L21.0093 4.04528L19.6504 16.9741L14.0021 16.3804\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.95312 8.04528L12.8983 7L14.2572 19.9288L4.312 20.9741L2.95312 8.04528Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlashcards;\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,4BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,4EACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4EACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFlashcards_exports","__export","IconFlashcards","IconFlashcards_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFlashcards","props","React","CentralIconBase","IconFlashcards_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import s from"react";var a=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:l,...i})=>s.createElement("svg",{...i,"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:p,...l}},n&&!o&&s.createElement("title",null,n),e);var c=e=>t.createElement(a,{...e,ariaLabel:"flashcards, cards, pages"},t.createElement("path",{d:"M10.625 7.17745L11.0641 3L21.0093 4.04528L19.6504 16.9741L14.0021 16.3804",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M2.95312 8.04528L12.8983 7L14.2572 19.9288L4.312 20.9741L2.95312 8.04528Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=c;export{c as IconFlashcards,h as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconFlashcards/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFlashcards: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"flashcards, cards, pages\">\n <path\n d=\"M10.625 7.17745L11.0641 3L21.0093 4.04528L19.6504 16.9741L14.0021 16.3804\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.95312 8.04528L12.8983 7L14.2572 19.9288L4.312 20.9741L2.95312 8.04528Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlashcards;\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,4BACpCC,EAAA,cAAC,QACC,EAAE,4EACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,4EACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFlashcards","props","React","CentralIconBase","IconFlashcards_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var C=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var L=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},i=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of f(e))!B.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(n=h(e,t))||n.enumerable});return r};var l=(r,e,o)=>(o=r!=null?C(g(r)):{},i(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),k=r=>i(p({},"__esModule",{value:!0}),r);var I={};L(I,{IconPaintBrush:()=>u,default:()=>x});module.exports=k(I);var s=l(require("react"));var a=l(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...d})=>a.default.createElement("svg",{...d,"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:n,...m}},o&&!t&&a.default.createElement("title",null,o),r);var u=r=>s.default.createElement(c,{...r,ariaLabel:"paint-brush, design, color, appearance"},s.default.createElement("path",{d:"M19.25 13.75V2.75H11.5L10 4.75L8.5 2.75H4.75V13.75H9.75L9.42705 18.7557C9.33117 20.2419 10.5107 21.5 12 21.5C13.4893 21.5 14.6688 20.2419 14.5729 18.7557L14.25 13.75H19.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M4.75 10.25H19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),x=u;0&&(module.exports={IconPaintBrush});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBrush/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBrush: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"paint-brush, design, color, appearance\"\n >\n <path\n d=\"M19.25 13.75V2.75H11.5L10 4.75L8.5 2.75H4.75V13.75H9.75L9.42705 18.7557C9.33117 20.2419 10.5107 21.5 12 21.5C13.4893 21.5 14.6688 20.2419 14.5729 18.7557L14.25 13.75H19.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.75 10.25H19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBrush;\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,CACE,GAAGF,EACJ,UAAU,0CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPaintBrush_exports","__export","IconPaintBrush","IconPaintBrush_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPaintBrush","props","React","CentralIconBase","IconPaintBrush_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:i,...l})=>p.createElement("svg",{...l,"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,...i}},n&&!o&&p.createElement("title",null,n),e);var c=e=>t.createElement(s,{...e,ariaLabel:"paint-brush, design, color, appearance"},t.createElement("path",{d:"M19.25 13.75V2.75H11.5L10 4.75L8.5 2.75H4.75V13.75H9.75L9.42705 18.7557C9.33117 20.2419 10.5107 21.5 12 21.5C13.4893 21.5 14.6688 20.2419 14.5729 18.7557L14.25 13.75H19.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M4.75 10.25H19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=c;export{c as IconPaintBrush,h as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBrush/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBrush: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"paint-brush, design, color, appearance\"\n >\n <path\n d=\"M19.25 13.75V2.75H11.5L10 4.75L8.5 2.75H4.75V13.75H9.75L9.42705 18.7557C9.33117 20.2419 10.5107 21.5 12 21.5C13.4893 21.5 14.6688 20.2419 14.5729 18.7557L14.25 13.75H19.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.75 10.25H19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBrush;\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,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBrush","props","React","CentralIconBase","IconPaintBrush_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var k=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var B=(r,t)=>{for(var o in t)s(r,o,{get:t[o],enumerable:!0})},i=(r,t,o,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of h(t))!g.call(r,e)&&e!==o&&s(r,e,{get:()=>t[e],enumerable:!(p=m(t,e))||p.enumerable});return r};var l=(r,t,o)=>(o=r!=null?k(f(r)):{},i(t||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o,r)),x=r=>i(s({},"__esModule",{value:!0}),r);var V={};B(V,{IconPaintBucket:()=>u,default:()=>I});module.exports=x(V);var n=l(require("react"));var a=l(require("react")),c=({children:r,size:t=24,ariaLabel:o,color:p,ariaHidden:e=!0,style:d,...C})=>a.default.createElement("svg",{...C,"aria-hidden":e,role:e?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:p,...d}},o&&!e&&a.default.createElement("title",null,o),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"paint-bucket, design, color, appearance"},n.default.createElement("path",{d:"M8.75 9.5V14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),n.default.createElement("path",{d:"M11.75 10V12.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),n.default.createElement("path",{d:"M3.75 9.25H20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),n.default.createElement("path",{d:"M19.25 21.25V10C19.25 5.99594 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.99594 4.75 10V21.25H19.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),I=u;0&&(module.exports={IconPaintBucket});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBucket/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBucket: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"paint-bucket, design, color, appearance\"\n >\n <path\n d=\"M8.75 9.5V14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M11.75 10V12.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M3.75 9.25H20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19.25 21.25V10C19.25 5.99594 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.99594 4.75 10V21.25H19.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucket;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,2CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oGACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPaintBucket_exports","__export","IconPaintBucket","IconPaintBucket_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPaintBucket","props","React","CentralIconBase","IconPaintBucket_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import p from"react";var s=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:i,...l})=>p.createElement("svg",{...l,"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,...i}},n&&!e&&p.createElement("title",null,n),o);var c=o=>t.createElement(s,{...o,ariaLabel:"paint-bucket, design, color, appearance"},t.createElement("path",{d:"M8.75 9.5V14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),t.createElement("path",{d:"M11.75 10V12.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),t.createElement("path",{d:"M3.75 9.25H20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),t.createElement("path",{d:"M19.25 21.25V10C19.25 5.99594 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.99594 4.75 10V21.25H19.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),m=c;export{c as IconPaintBucket,m as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBucket/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBucket: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"paint-bucket, design, color, appearance\"\n >\n <path\n d=\"M8.75 9.5V14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M11.75 10V12.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M3.75 9.25H20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19.25 21.25V10C19.25 5.99594 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.99594 4.75 10V21.25H19.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucket;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,2CAEVC,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,oGACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBucket","props","React","CentralIconBase","IconPaintBucket_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var d=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var k=(r,t)=>{for(var o in t)a(r,o,{get:t[o],enumerable:!0})},l=(r,t,o,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of h(t))!g.call(r,e)&&e!==o&&a(r,e,{get:()=>t[e],enumerable:!(p=f(t,e))||p.enumerable});return r};var i=(r,t,o)=>(o=r!=null?d(B(r)):{},l(t||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),x=r=>l(a({},"__esModule",{value:!0}),r);var L={};k(L,{IconPaintBucketDrop:()=>c,default:()=>I});module.exports=x(L);var n=i(require("react"));var s=i(require("react")),C=({children:r,size:t=24,ariaLabel:o,color:p,ariaHidden:e=!0,style:u,...m})=>s.default.createElement("svg",{...m,"aria-hidden":e,role:e?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:p,...u}},o&&!e&&s.default.createElement("title",null,o),r);var c=r=>n.default.createElement(C,{...r,ariaLabel:"paint-bucket-drop"},n.default.createElement("path",{d:"M10.8215 20.4964L20.7559 12.8995L10.8564 3L3.25953 12.9344C2.34617 14.1288 2.45807 15.8149 3.52129 16.8781L6.87785 20.2346C7.94106 21.2978 9.62712 21.4098 10.8215 20.4964Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M12.0007 11.2382L2.74805 6.3916",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),n.default.createElement("path",{d:"M22.5 19.6001C22.5 20.9256 21.4926 22.0001 20.25 22.0001C19.0074 22.0001 18 20.9256 18 19.6001C18 18.2128 19.3366 16.8254 19.9495 16.2622C20.1217 16.104 20.3783 16.104 20.5505 16.2622C21.1634 16.8254 22.5 18.2128 22.5 19.6001Z",fill:"currentColor"})),I=c;0&&(module.exports={IconPaintBucketDrop});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBucketDrop/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBucketDrop: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"paint-bucket-drop\">\n <path\n d=\"M10.8215 20.4964L20.7559 12.8995L10.8564 3L3.25953 12.9344C2.34617 14.1288 2.45807 15.8149 3.52129 16.8781L6.87785 20.2346C7.94106 21.2978 9.62712 21.4098 10.8215 20.4964Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12.0007 11.2382L2.74805 6.3916\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M22.5 19.6001C22.5 20.9256 21.4926 22.0001 20.25 22.0001C19.0074 22.0001 18 20.9256 18 19.6001C18 18.2128 19.3366 16.8254 19.9495 16.2622C20.1217 16.104 20.3783 16.104 20.5505 16.2622C21.1634 16.8254 22.5 18.2128 22.5 19.6001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucketDrop;\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,yBAAAE,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,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8KACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPaintBucketDrop_exports","__export","IconPaintBucketDrop","IconPaintBucketDrop_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPaintBucketDrop","props","React","CentralIconBase","IconPaintBucketDrop_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import p from"react";var a=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:l,...i})=>p.createElement("svg",{...i,"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:s,...l}},n&&!e&&p.createElement("title",null,n),o);var C=o=>t.createElement(a,{...o,ariaLabel:"paint-bucket-drop"},t.createElement("path",{d:"M10.8215 20.4964L20.7559 12.8995L10.8564 3L3.25953 12.9344C2.34617 14.1288 2.45807 15.8149 3.52129 16.8781L6.87785 20.2346C7.94106 21.2978 9.62712 21.4098 10.8215 20.4964Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),t.createElement("path",{d:"M12.0007 11.2382L2.74805 6.3916",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),t.createElement("path",{d:"M22.5 19.6001C22.5 20.9256 21.4926 22.0001 20.25 22.0001C19.0074 22.0001 18 20.9256 18 19.6001C18 18.2128 19.3366 16.8254 19.9495 16.2622C20.1217 16.104 20.3783 16.104 20.5505 16.2622C21.1634 16.8254 22.5 18.2128 22.5 19.6001Z",fill:"currentColor"})),f=C;export{C as IconPaintBucketDrop,f as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPaintBucketDrop/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBucketDrop: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"paint-bucket-drop\">\n <path\n d=\"M10.8215 20.4964L20.7559 12.8995L10.8564 3L3.25953 12.9344C2.34617 14.1288 2.45807 15.8149 3.52129 16.8781L6.87785 20.2346C7.94106 21.2978 9.62712 21.4098 10.8215 20.4964Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12.0007 11.2382L2.74805 6.3916\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M22.5 19.6001C22.5 20.9256 21.4926 22.0001 20.25 22.0001C19.0074 22.0001 18 20.9256 18 19.6001C18 18.2128 19.3366 16.8254 19.9495 16.2622C20.1217 16.104 20.3783 16.104 20.5505 16.2622C21.1634 16.8254 22.5 18.2128 22.5 19.6001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucketDrop;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,8KACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,qOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBucketDrop","props","React","CentralIconBase","IconPaintBucketDrop_default"]}
|
package/README.md
CHANGED
@@ -334,6 +334,7 @@ Below is a complete list of available icons:
|
|
334
334
|
|
335
335
|
### Augmented Reality
|
336
336
|
|
337
|
+
- Icon3dBoxBottom
|
337
338
|
- Icon3dBoxTop
|
338
339
|
- Icon3dSphere
|
339
340
|
- IconAr
|
@@ -607,6 +608,9 @@ Below is a complete list of available icons:
|
|
607
608
|
- IconMarkdown
|
608
609
|
- IconMarker
|
609
610
|
- IconMarkerCircle
|
611
|
+
- IconPaintBrush
|
612
|
+
- IconPaintBucket
|
613
|
+
- IconPaintBucketDrop
|
610
614
|
- IconPencil
|
611
615
|
- IconPencilLine
|
612
616
|
- IconPencilWave
|
@@ -1563,6 +1567,7 @@ Below is a complete list of available icons:
|
|
1563
1567
|
- IconFire3
|
1564
1568
|
- IconFlag1
|
1565
1569
|
- IconFlag2
|
1570
|
+
- IconFlashcards
|
1566
1571
|
- IconFootsteps
|
1567
1572
|
- IconForYou
|
1568
1573
|
- IconGalaxy
|
package/icons/index.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export type CentralIconName =
|
2
|
+
| "Icon3dBoxBottom"
|
2
3
|
| "Icon3dBoxTop"
|
3
4
|
| "Icon3dSphere"
|
4
5
|
| "Icon4k"
|
@@ -655,6 +656,7 @@ export type CentralIconName =
|
|
655
656
|
| "IconFistbump"
|
656
657
|
| "IconFlag1"
|
657
658
|
| "IconFlag2"
|
659
|
+
| "IconFlashcards"
|
658
660
|
| "IconFloppyDisk1"
|
659
661
|
| "IconFloppyDisk2"
|
660
662
|
| "IconFocusAuto"
|
@@ -1002,6 +1004,9 @@ export type CentralIconName =
|
|
1002
1004
|
| "IconPageTextLock"
|
1003
1005
|
| "IconPageTextPieChart"
|
1004
1006
|
| "IconPageTextSearch"
|
1007
|
+
| "IconPaintBrush"
|
1008
|
+
| "IconPaintBucket"
|
1009
|
+
| "IconPaintBucketDrop"
|
1005
1010
|
| "IconPancakes"
|
1006
1011
|
| "IconPanoramaView"
|
1007
1012
|
| "IconPaperclip1"
|