@central-icons-react/round-filled-radius-0-stroke-2 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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const Icon3dBoxBottom: React.FC<CentralIconBaseProps>;
4
+ export default Icon3dBoxBottom;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var p=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var L=(o,r)=>{for(var t in r)p(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of x(r))!h.call(o,e)&&e!==t&&p(o,e,{get:()=>r[e],enumerable:!(l=u(r,e))||l.enumerable});return o};var s=(o,r,t)=>(t=o!=null?d(B(o)):{},a(r||!o||!o.__esModule?p(t,"default",{value:o,enumerable:!0}):t,o)),g=o=>a(p({},"__esModule",{value:!0}),o);var V={};L(V,{Icon3dBoxBottom:()=>i,default:()=>I});module.exports=g(V);var n=s(require("react"));var C=s(require("react")),m=({children:o,size:r=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:c,...f})=>C.default.createElement("svg",{...f,"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:l,...c}},t&&!e&&C.default.createElement("title",null,t),o);var i=o=>n.default.createElement(m,{...o,ariaLabel:"3d-box-bottom, shaders, model, room"},n.default.createElement("path",{d:"M10.75 11.5675C10.9047 11.4782 11 11.3132 11 11.1345V2.29011C11 1.90523 10.5834 1.66467 10.25 1.85708L2.83991 6.13453C2.53047 6.31315 2.33984 6.6433 2.33984 7.0006V15.5572C2.33984 15.9421 2.75651 16.1826 3.08985 15.9902L10.75 11.5675Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21.6602 7.0006C21.6602 6.6433 21.4695 6.31315 21.1601 6.13453L13.75 1.85708C13.4166 1.66467 13 1.90523 13 2.29011V11.1345C13 11.3132 13.0953 11.4782 13.25 11.5675L20.9102 15.9902C21.2435 16.1826 21.6602 15.9421 21.6602 15.5572V7.0006Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.9092 18.5886C20.2425 18.3962 20.2425 17.915 19.9092 17.7226L12.25 13.3C12.0953 13.2106 11.9047 13.2106 11.75 13.3L4.08991 17.7226C3.75656 17.915 3.75658 18.3962 4.08994 18.5886L11.5 22.866C11.8094 23.0446 12.1906 23.0446 12.4999 22.866L19.9092 18.5886Z",fill:"currentColor"})),I=i;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=\"M10.75 11.5675C10.9047 11.4782 11 11.3132 11 11.1345V2.29011C11 1.90523 10.5834 1.66467 10.25 1.85708L2.83991 6.13453C2.53047 6.31315 2.33984 6.6433 2.33984 7.0006V15.5572C2.33984 15.9421 2.75651 16.1826 3.08985 15.9902L10.75 11.5675Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.6602 7.0006C21.6602 6.6433 21.4695 6.31315 21.1601 6.13453L13.75 1.85708C13.4166 1.66467 13 1.90523 13 2.29011V11.1345C13 11.3132 13.0953 11.4782 13.25 11.5675L20.9102 15.9902C21.2435 16.1826 21.6602 15.9421 21.6602 15.5572V7.0006Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.9092 18.5886C20.2425 18.3962 20.2425 17.915 19.9092 17.7226L12.25 13.3C12.0953 13.2106 11.9047 13.2106 11.75 13.3L4.08991 17.7226C3.75656 17.915 3.75658 18.3962 4.08994 18.5886L11.5 22.866C11.8094 23.0446 12.1906 23.0446 12.4999 22.866L19.9092 18.5886Z\"\n fill=\"currentColor\"\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,6OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mQACF,KAAK,eACP,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 r from"react";import l from"react";var p=({children:t,size:o=24,ariaLabel:n,color:C,ariaHidden:e=!0,style:a,...s})=>l.createElement("svg",{...s,"aria-hidden":e,role:e?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:C,...a}},n&&!e&&l.createElement("title",null,n),t);var m=t=>r.createElement(p,{...t,ariaLabel:"3d-box-bottom, shaders, model, room"},r.createElement("path",{d:"M10.75 11.5675C10.9047 11.4782 11 11.3132 11 11.1345V2.29011C11 1.90523 10.5834 1.66467 10.25 1.85708L2.83991 6.13453C2.53047 6.31315 2.33984 6.6433 2.33984 7.0006V15.5572C2.33984 15.9421 2.75651 16.1826 3.08985 15.9902L10.75 11.5675Z",fill:"currentColor"}),r.createElement("path",{d:"M21.6602 7.0006C21.6602 6.6433 21.4695 6.31315 21.1601 6.13453L13.75 1.85708C13.4166 1.66467 13 1.90523 13 2.29011V11.1345C13 11.3132 13.0953 11.4782 13.25 11.5675L20.9102 15.9902C21.2435 16.1826 21.6602 15.9421 21.6602 15.5572V7.0006Z",fill:"currentColor"}),r.createElement("path",{d:"M19.9092 18.5886C20.2425 18.3962 20.2425 17.915 19.9092 17.7226L12.25 13.3C12.0953 13.2106 11.9047 13.2106 11.75 13.3L4.08991 17.7226C3.75656 17.915 3.75658 18.3962 4.08994 18.5886L11.5 22.866C11.8094 23.0446 12.1906 23.0446 12.4999 22.866L19.9092 18.5886Z",fill:"currentColor"})),u=m;export{m as Icon3dBoxBottom,u 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=\"M10.75 11.5675C10.9047 11.4782 11 11.3132 11 11.1345V2.29011C11 1.90523 10.5834 1.66467 10.25 1.85708L2.83991 6.13453C2.53047 6.31315 2.33984 6.6433 2.33984 7.0006V15.5572C2.33984 15.9421 2.75651 16.1826 3.08985 15.9902L10.75 11.5675Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.6602 7.0006C21.6602 6.6433 21.4695 6.31315 21.1601 6.13453L13.75 1.85708C13.4166 1.66467 13 1.90523 13 2.29011V11.1345C13 11.3132 13.0953 11.4782 13.25 11.5675L20.9102 15.9902C21.2435 16.1826 21.6602 15.9421 21.6602 15.5572V7.0006Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.9092 18.5886C20.2425 18.3962 20.2425 17.915 19.9092 17.7226L12.25 13.3C12.0953 13.2106 11.9047 13.2106 11.75 13.3L4.08991 17.7226C3.75656 17.915 3.75658 18.3962 4.08994 18.5886L11.5 22.866C11.8094 23.0446 12.1906 23.0446 12.4999 22.866L19.9092 18.5886Z\"\n fill=\"currentColor\"\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,6OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFlashcards: React.FC<CentralIconBaseProps>;
4
+ export default IconFlashcards;
@@ -0,0 +1,2 @@
1
+ "use strict";var L=Object.create;var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of d(e))!h.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=u(e,o))||n.enumerable});return r};var C=(r,e,t)=>(t=r!=null?L(g(r)):{},s(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>s(a({},"__esModule",{value:!0}),r);var w={};x(w,{IconFlashcards:()=>m,default:()=>I});module.exports=B(w);var l=C(require("react"));var p=C(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...f})=>p.default.createElement("svg",{...f,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...i}},t&&!o&&p.default.createElement("title",null,t),r);var m=r=>l.default.createElement(c,{...r,ariaLabel:"flashcards, cards, pages"},l.default.createElement("path",{d:"M3.10322 9.04017C3.04549 8.49091 3.44395 7.99885 3.99321 7.94112L11.9494 7.10489C12.4986 7.04716 12.9907 7.44562 13.0484 7.99488L14.3061 19.9611C14.3639 20.5104 13.9654 21.0024 13.4161 21.0601L5.45997 21.8964C4.91071 21.9541 4.41864 21.5556 4.36091 21.0064L3.10322 9.04017Z",fill:"currentColor"}),l.default.createElement("path",{d:"M12.1598 2.10516L20.1159 2.9411C20.665 2.99881 21.064 3.49066 21.0065 4.03973L19.7487 16.0065C19.6909 16.5557 19.1983 16.9539 18.6491 16.8962L15.6598 16.5817L14.7389 7.81708C14.5926 6.42693 13.4159 5.39422 12.0475 5.39911L11.7721 5.41473L10.7956 5.51727L11.0612 2.99481C11.119 2.44563 11.6106 2.04748 12.1598 2.10516Z",fill:"currentColor"})),I=m;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=\"M3.10322 9.04017C3.04549 8.49091 3.44395 7.99885 3.99321 7.94112L11.9494 7.10489C12.4986 7.04716 12.9907 7.44562 13.0484 7.99488L14.3061 19.9611C14.3639 20.5104 13.9654 21.0024 13.4161 21.0601L5.45997 21.8964C4.91071 21.9541 4.41864 21.5556 4.36091 21.0064L3.10322 9.04017Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.1598 2.10516L20.1159 2.9411C20.665 2.99881 21.064 3.49066 21.0065 4.03973L19.7487 16.0065C19.6909 16.5557 19.1983 16.9539 18.6491 16.8962L15.6598 16.5817L14.7389 7.81708C14.5926 6.42693 13.4159 5.39422 12.0475 5.39911L11.7721 5.41473L10.7956 5.51727L11.0612 2.99481C11.119 2.44563 11.6106 2.04748 12.1598 2.10516Z\"\n fill=\"currentColor\"\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,oRACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gUACF,KAAK,eACP,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 o from"react";import a from"react";var l=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:s,...C})=>a.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...s}},n&&!t&&a.createElement("title",null,n),e);var c=e=>o.createElement(l,{...e,ariaLabel:"flashcards, cards, pages"},o.createElement("path",{d:"M3.10322 9.04017C3.04549 8.49091 3.44395 7.99885 3.99321 7.94112L11.9494 7.10489C12.4986 7.04716 12.9907 7.44562 13.0484 7.99488L14.3061 19.9611C14.3639 20.5104 13.9654 21.0024 13.4161 21.0601L5.45997 21.8964C4.91071 21.9541 4.41864 21.5556 4.36091 21.0064L3.10322 9.04017Z",fill:"currentColor"}),o.createElement("path",{d:"M12.1598 2.10516L20.1159 2.9411C20.665 2.99881 21.064 3.49066 21.0065 4.03973L19.7487 16.0065C19.6909 16.5557 19.1983 16.9539 18.6491 16.8962L15.6598 16.5817L14.7389 7.81708C14.5926 6.42693 13.4159 5.39422 12.0475 5.39911L11.7721 5.41473L10.7956 5.51727L11.0612 2.99481C11.119 2.44563 11.6106 2.04748 12.1598 2.10516Z",fill:"currentColor"})),u=c;export{c as IconFlashcards,u 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=\"M3.10322 9.04017C3.04549 8.49091 3.44395 7.99885 3.99321 7.94112L11.9494 7.10489C12.4986 7.04716 12.9907 7.44562 13.0484 7.99488L14.3061 19.9611C14.3639 20.5104 13.9654 21.0024 13.4161 21.0601L5.45997 21.8964C4.91071 21.9541 4.41864 21.5556 4.36091 21.0064L3.10322 9.04017Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.1598 2.10516L20.1159 2.9411C20.665 2.99881 21.064 3.49066 21.0065 4.03973L19.7487 16.0065C19.6909 16.5557 19.1983 16.9539 18.6491 16.8962L15.6598 16.5817L14.7389 7.81708C14.5926 6.42693 13.4159 5.39422 12.0475 5.39911L11.7721 5.41473L10.7956 5.51727L11.0612 2.99481C11.119 2.44563 11.6106 2.04748 12.1598 2.10516Z\"\n fill=\"currentColor\"\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,oRACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFlashcards","props","React","CentralIconBase","IconFlashcards_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBrush: React.FC<CentralIconBaseProps>;
4
+ export default IconPaintBrush;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of h(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(n=g(e,o))||n.enumerable});return r};var C=(r,e,t)=>(t=r!=null?f(B(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),V=r=>s(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconPaintBrush:()=>c,default:()=>d});module.exports=V(P);var a=C(require("react"));var l=C(require("react")),i=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:m,...u})=>l.default.createElement("svg",{...u,"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,...m}},t&&!o&&l.default.createElement("title",null,t),r);var c=r=>a.default.createElement(i,{...r,ariaLabel:"paint-brush, design, color, appearance"},a.default.createElement("path",{d:"M20 14C20 14.5523 19.5523 15 19 15H14.5L14.8008 19.5068C14.9087 21.1267 13.6235 22.5 12 22.5C10.3765 22.5 9.09135 21.1267 9.19922 19.5068L9.5 15H5C4.44772 15 4 14.5523 4 14V12H20V14Z",fill:"currentColor"}),a.default.createElement("path",{d:"M8 2C8.31476 2 8.61095 2.14858 8.7998 2.40039L10 4L11.2002 2.40039C11.3891 2.14858 11.6852 2 12 2H19C19.5523 2 20 2.44772 20 3V10H4V3C4 2.44772 4.44772 2 5 2H8Z",fill:"currentColor"})),d=c;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=\"M20 14C20 14.5523 19.5523 15 19 15H14.5L14.8008 19.5068C14.9087 21.1267 13.6235 22.5 12 22.5C10.3765 22.5 9.09135 21.1267 9.19922 19.5068L9.5 15H5C4.44772 15 4 14.5523 4 14V12H20V14Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8 2C8.31476 2 8.61095 2.14858 8.7998 2.40039L10 4L11.2002 2.40039C11.3891 2.14858 11.6852 2 12 2H19C19.5523 2 20 2.44772 20 3V10H4V3C4 2.44772 4.44772 2 5 2H8Z\"\n fill=\"currentColor\"\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,yLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,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 o from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...C})=>p.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!t&&p.createElement("title",null,n),e);var i=e=>o.createElement(a,{...e,ariaLabel:"paint-brush, design, color, appearance"},o.createElement("path",{d:"M20 14C20 14.5523 19.5523 15 19 15H14.5L14.8008 19.5068C14.9087 21.1267 13.6235 22.5 12 22.5C10.3765 22.5 9.09135 21.1267 9.19922 19.5068L9.5 15H5C4.44772 15 4 14.5523 4 14V12H20V14Z",fill:"currentColor"}),o.createElement("path",{d:"M8 2C8.31476 2 8.61095 2.14858 8.7998 2.40039L10 4L11.2002 2.40039C11.3891 2.14858 11.6852 2 12 2H19C19.5523 2 20 2.44772 20 3V10H4V3C4 2.44772 4.44772 2 5 2H8Z",fill:"currentColor"})),g=i;export{i as IconPaintBrush,g 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=\"M20 14C20 14.5523 19.5523 15 19 15H14.5L14.8008 19.5068C14.9087 21.1267 13.6235 22.5 12 22.5C10.3765 22.5 9.09135 21.1267 9.19922 19.5068L9.5 15H5C4.44772 15 4 14.5523 4 14V12H20V14Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8 2C8.31476 2 8.61095 2.14858 8.7998 2.40039L10 4L11.2002 2.40039C11.3891 2.14858 11.6852 2 12 2H19C19.5523 2 20 2.44772 20 3V10H4V3C4 2.44772 4.44772 2 5 2H8Z\"\n fill=\"currentColor\"\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,yLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBrush","props","React","CentralIconBase","IconPaintBrush_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBucket: React.FC<CentralIconBaseProps>;
4
+ export default IconPaintBucket;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var x=(e,t)=>{for(var r in t)l(e,r,{get:t[r],enumerable:!0})},C=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of V(t))!B.call(e,o)&&o!==r&&l(e,o,{get:()=>t[o],enumerable:!(n=d(t,o))||n.enumerable});return e};var s=(e,t,r)=>(r=e!=null?f(g(e)):{},C(t||!e||!e.__esModule?l(r,"default",{value:e,enumerable:!0}):r,e)),I=e=>C(l({},"__esModule",{value:!0}),e);var b={};x(b,{IconPaintBucket:()=>i,default:()=>P});module.exports=I(b);var a=s(require("react"));var p=s(require("react")),c=({children:e,size:t=24,ariaLabel:r,color:n,ariaHidden:o=!0,style:m,...u})=>p.default.createElement("svg",{...u,"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,...m}},r&&!o&&p.default.createElement("title",null,r),e);var i=e=>a.default.createElement(c,{...e,ariaLabel:"paint-bucket, design, color, appearance"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.7277 2 18.86 4.54954 19.748 8H20C20.5523 8 21 8.44772 21 9C21 9.55228 20.5523 10 20 10V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V10C3.44772 10 3 9.55228 3 9C3 8.44772 3.44772 8 4 8H4.25195C5.14003 4.54954 8.27231 2 12 2ZM12 4C9.38772 4 7.16657 5.66984 6.34277 8H8V13C8 13.5523 8.44772 14 9 14C9.55228 14 10 13.5523 10 13V8H11V11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11V8H17.6572C16.8334 5.66984 14.6123 4 12 4Z",fill:"currentColor"})),P=i;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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C15.7277 2 18.86 4.54954 19.748 8H20C20.5523 8 21 8.44772 21 9C21 9.55228 20.5523 10 20 10V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V10C3.44772 10 3 9.55228 3 9C3 8.44772 3.44772 8 4 8H4.25195C5.14003 4.54954 8.27231 2 12 2ZM12 4C9.38772 4 7.16657 5.66984 6.34277 8H8V13C8 13.5523 8.44772 14 9 14C9.55228 14 10 13.5523 10 13V8H11V11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11V8H17.6572C16.8334 5.66984 14.6123 4 12 4Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,ucACF,KAAK,eACP,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 p from"react";import n from"react";var l=({children:t,size:e=24,ariaLabel:o,color:a,ariaHidden:r=!0,style:C,...s})=>n.createElement("svg",{...s,"aria-hidden":r,role:r?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...C}},o&&!r&&n.createElement("title",null,o),t);var c=t=>p.createElement(l,{...t,ariaLabel:"paint-bucket, design, color, appearance"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.7277 2 18.86 4.54954 19.748 8H20C20.5523 8 21 8.44772 21 9C21 9.55228 20.5523 10 20 10V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V10C3.44772 10 3 9.55228 3 9C3 8.44772 3.44772 8 4 8H4.25195C5.14003 4.54954 8.27231 2 12 2ZM12 4C9.38772 4 7.16657 5.66984 6.34277 8H8V13C8 13.5523 8.44772 14 9 14C9.55228 14 10 13.5523 10 13V8H11V11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11V8H17.6572C16.8334 5.66984 14.6123 4 12 4Z",fill:"currentColor"})),d=c;export{c as IconPaintBucket,d 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C15.7277 2 18.86 4.54954 19.748 8H20C20.5523 8 21 8.44772 21 9C21 9.55228 20.5523 10 20 10V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V10C3.44772 10 3 9.55228 3 9C3 8.44772 3.44772 8 4 8H4.25195C5.14003 4.54954 8.27231 2 12 2ZM12 4C9.38772 4 7.16657 5.66984 6.34277 8H8V13C8 13.5523 8.44772 14 9 14C9.55228 14 10 13.5523 10 13V8H11V11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11V8H17.6572C16.8334 5.66984 14.6123 4 12 4Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,ucACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBucket","props","React","CentralIconBase","IconPaintBucket_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBucketDrop: React.FC<CentralIconBaseProps>;
4
+ export default IconPaintBucketDrop;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var I=(r,t)=>{for(var e in t)p(r,e,{get:t[e],enumerable:!0})},a=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of L(t))!x.call(r,o)&&o!==e&&p(r,o,{get:()=>t[o],enumerable:!(n=B(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?f(g(r)):{},a(t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>a(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconPaintBucketDrop:()=>c,default:()=>h});module.exports=d(P);var C=s(require("react"));var l=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:m,...u})=>l.default.createElement("svg",{...u,"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,...m}},e&&!o&&l.default.createElement("title",null,e),r);var c=r=>C.default.createElement(i,{...r,ariaLabel:"paint-bucket-drop"},C.default.createElement("path",{d:"M19.9507 16.2625C20.1229 16.1043 20.3791 16.1042 20.5513 16.2625C21.1642 16.8257 22.5005 18.2131 22.5005 19.6004C22.5004 20.9257 21.4931 21.9998 20.2505 21.9998C19.0081 21.9996 18.0006 20.9256 18.0005 19.6004C18.0005 18.213 19.3379 16.8257 19.9507 16.2625Z",fill:"currentColor"}),C.default.createElement("path",{d:"M10.5571 1.87283C10.8443 1.85418 11.1271 1.96035 11.3306 2.16384L21.23 12.0633C21.4333 12.2668 21.5387 12.5487 21.52 12.8357C21.501 13.1229 21.3587 13.3891 21.1304 13.5642L11.1958 21.1609C9.6034 22.3786 7.35466 22.2296 5.93702 20.8123L2.58156 17.4568C1.16394 16.0392 1.0151 13.7906 2.23292 12.198L3.7798 10.1736L10.2144 13.2224C10.7133 13.4587 11.3099 13.2457 11.5464 12.7469C11.7613 12.2922 11.6021 11.7574 11.1948 11.4871L2.57277 7.4031C2.07397 7.16657 1.86092 6.57101 2.09718 6.07205C2.33352 5.5731 2.92922 5.36043 3.42823 5.59646L6.25538 6.93533L9.82863 2.26345C10.0037 2.035 10.27 1.89201 10.5571 1.87283Z",fill:"currentColor"})),h=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=\"M19.9507 16.2625C20.1229 16.1043 20.3791 16.1042 20.5513 16.2625C21.1642 16.8257 22.5005 18.2131 22.5005 19.6004C22.5004 20.9257 21.4931 21.9998 20.2505 21.9998C19.0081 21.9996 18.0006 20.9256 18.0005 19.6004C18.0005 18.213 19.3379 16.8257 19.9507 16.2625Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.5571 1.87283C10.8443 1.85418 11.1271 1.96035 11.3306 2.16384L21.23 12.0633C21.4333 12.2668 21.5387 12.5487 21.52 12.8357C21.501 13.1229 21.3587 13.3891 21.1304 13.5642L11.1958 21.1609C9.6034 22.3786 7.35466 22.2296 5.93702 20.8123L2.58156 17.4568C1.16394 16.0392 1.0151 13.7906 2.23292 12.198L3.7798 10.1736L10.2144 13.2224C10.7133 13.4587 11.3099 13.2457 11.5464 12.7469C11.7613 12.2922 11.6021 11.7574 11.1948 11.4871L2.57277 7.4031C2.07397 7.16657 1.86092 6.57101 2.09718 6.07205C2.33352 5.5731 2.92922 5.36043 3.42823 5.59646L6.25538 6.93533L9.82863 2.26345C10.0037 2.035 10.27 1.89201 10.5571 1.87283Z\"\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,mQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qmBACF,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 o from"react";import p from"react";var C=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:a,...s})=>p.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:l,...a}},n&&!e&&p.createElement("title",null,n),t);var i=t=>o.createElement(C,{...t,ariaLabel:"paint-bucket-drop"},o.createElement("path",{d:"M19.9507 16.2625C20.1229 16.1043 20.3791 16.1042 20.5513 16.2625C21.1642 16.8257 22.5005 18.2131 22.5005 19.6004C22.5004 20.9257 21.4931 21.9998 20.2505 21.9998C19.0081 21.9996 18.0006 20.9256 18.0005 19.6004C18.0005 18.213 19.3379 16.8257 19.9507 16.2625Z",fill:"currentColor"}),o.createElement("path",{d:"M10.5571 1.87283C10.8443 1.85418 11.1271 1.96035 11.3306 2.16384L21.23 12.0633C21.4333 12.2668 21.5387 12.5487 21.52 12.8357C21.501 13.1229 21.3587 13.3891 21.1304 13.5642L11.1958 21.1609C9.6034 22.3786 7.35466 22.2296 5.93702 20.8123L2.58156 17.4568C1.16394 16.0392 1.0151 13.7906 2.23292 12.198L3.7798 10.1736L10.2144 13.2224C10.7133 13.4587 11.3099 13.2457 11.5464 12.7469C11.7613 12.2922 11.6021 11.7574 11.1948 11.4871L2.57277 7.4031C2.07397 7.16657 1.86092 6.57101 2.09718 6.07205C2.33352 5.5731 2.92922 5.36043 3.42823 5.59646L6.25538 6.93533L9.82863 2.26345C10.0037 2.035 10.27 1.89201 10.5571 1.87283Z",fill:"currentColor"})),B=i;export{i as IconPaintBucketDrop,B 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=\"M19.9507 16.2625C20.1229 16.1043 20.3791 16.1042 20.5513 16.2625C21.1642 16.8257 22.5005 18.2131 22.5005 19.6004C22.5004 20.9257 21.4931 21.9998 20.2505 21.9998C19.0081 21.9996 18.0006 20.9256 18.0005 19.6004C18.0005 18.213 19.3379 16.8257 19.9507 16.2625Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.5571 1.87283C10.8443 1.85418 11.1271 1.96035 11.3306 2.16384L21.23 12.0633C21.4333 12.2668 21.5387 12.5487 21.52 12.8357C21.501 13.1229 21.3587 13.3891 21.1304 13.5642L11.1958 21.1609C9.6034 22.3786 7.35466 22.2296 5.93702 20.8123L2.58156 17.4568C1.16394 16.0392 1.0151 13.7906 2.23292 12.198L3.7798 10.1736L10.2144 13.2224C10.7133 13.4587 11.3099 13.2457 11.5464 12.7469C11.7613 12.2922 11.6021 11.7574 11.1948 11.4871L2.57277 7.4031C2.07397 7.16657 1.86092 6.57101 2.09718 6.07205C2.33352 5.5731 2.92922 5.36043 3.42823 5.59646L6.25538 6.93533L9.82863 2.26345C10.0037 2.035 10.27 1.89201 10.5571 1.87283Z\"\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,mQACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qmBACF,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"