@central-icons-react/round-outlined-radius-0-stroke-1.5 0.0.61 → 1.0.1
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/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/IconShaderEffect/index.d.ts +4 -0
- package/IconShaderEffect/index.js +2 -0
- package/IconShaderEffect/index.js.map +1 -0
- package/IconShaderEffect/index.mjs +2 -0
- package/IconShaderEffect/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 +14 -4
- 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 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"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var C=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},i=(r,e,o,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of k(e))!L.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(s=h(e,t))||s.enumerable});return r};var l=(r,e,o)=>(o=r!=null?f(C(r)):{},i(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),x=r=>i(a({},"__esModule",{value:!0}),r);var I={};g(I,{IconShaderEffect:()=>c,default:()=>B});module.exports=x(I);var n=l(require("react"));var p=l(require("react")),d=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:u,...m})=>p.default.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:s,...u}},o&&!t&&p.default.createElement("title",null,o),r);var c=r=>n.default.createElement(d,{...r,ariaLabel:"shader-effect, material"},n.default.createElement("path",{d:"M20.25 3.75H3.75V20.25H20.25V3.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M19.5 4.5L4.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M13.25 3.75L3.75 13.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=c;0&&(module.exports={IconShaderEffect});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconShaderEffect/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShaderEffect: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shader-effect, material\">\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.5 4.5L4.5 19.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13.25 3.75L3.75 13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShaderEffect;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconShaderEffect_exports","__export","IconShaderEffect","IconShaderEffect_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconShaderEffect","props","React","CentralIconBase","IconShaderEffect_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import e from"react";import s from"react";var a=({children:o,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:i,...l})=>s.createElement("svg",{...l,"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:p,...i}},n&&!t&&s.createElement("title",null,n),o);var d=o=>e.createElement(a,{...o,ariaLabel:"shader-effect, material"},e.createElement("path",{d:"M20.25 3.75H3.75V20.25H20.25V3.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M19.5 4.5L4.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M13.25 3.75L3.75 13.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=d;export{d as IconShaderEffect,h as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconShaderEffect/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShaderEffect: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shader-effect, material\">\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.5 4.5L4.5 19.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13.25 3.75L3.75 13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShaderEffect;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconShaderEffect","props","React","CentralIconBase","IconShaderEffect_default"]}
|
package/README.md
CHANGED
@@ -608,6 +608,9 @@ Below is a complete list of available icons:
|
|
608
608
|
- IconMarkdown
|
609
609
|
- IconMarker
|
610
610
|
- IconMarkerCircle
|
611
|
+
- IconPaintBrush
|
612
|
+
- IconPaintBucket
|
613
|
+
- IconPaintBucketDrop
|
611
614
|
- IconPencil
|
612
615
|
- IconPencilLine
|
613
616
|
- IconPencilWave
|
@@ -619,6 +622,7 @@ Below is a complete list of available icons:
|
|
619
622
|
- IconRewrite1
|
620
623
|
- IconRewrite2
|
621
624
|
- IconRuler
|
625
|
+
- IconShaderEffect
|
622
626
|
- IconShaders
|
623
627
|
- IconSignature
|
624
628
|
- IconSlice
|
@@ -1564,6 +1568,7 @@ Below is a complete list of available icons:
|
|
1564
1568
|
- IconFire3
|
1565
1569
|
- IconFlag1
|
1566
1570
|
- IconFlag2
|
1571
|
+
- IconFlashcards
|
1567
1572
|
- IconFootsteps
|
1568
1573
|
- IconForYou
|
1569
1574
|
- IconGalaxy
|
package/icons/index.d.ts
CHANGED
@@ -656,6 +656,7 @@ export type CentralIconName =
|
|
656
656
|
| "IconFistbump"
|
657
657
|
| "IconFlag1"
|
658
658
|
| "IconFlag2"
|
659
|
+
| "IconFlashcards"
|
659
660
|
| "IconFloppyDisk1"
|
660
661
|
| "IconFloppyDisk2"
|
661
662
|
| "IconFocusAuto"
|
@@ -1003,6 +1004,9 @@ export type CentralIconName =
|
|
1003
1004
|
| "IconPageTextLock"
|
1004
1005
|
| "IconPageTextPieChart"
|
1005
1006
|
| "IconPageTextSearch"
|
1007
|
+
| "IconPaintBrush"
|
1008
|
+
| "IconPaintBucket"
|
1009
|
+
| "IconPaintBucketDrop"
|
1006
1010
|
| "IconPancakes"
|
1007
1011
|
| "IconPanoramaView"
|
1008
1012
|
| "IconPaperclip1"
|
@@ -1178,6 +1182,7 @@ export type CentralIconName =
|
|
1178
1182
|
| "IconSettingsSliderVer"
|
1179
1183
|
| "IconSettingsToggle1"
|
1180
1184
|
| "IconSettingsToggle2"
|
1185
|
+
| "IconShaderEffect"
|
1181
1186
|
| "IconShaders"
|
1182
1187
|
| "IconShadows"
|
1183
1188
|
| "IconShaka1"
|