@central-icons-react-native/round-filled-radius-1-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 { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const Icon3dBoxBottom: FC<CentralIconBaseProps>;
4
+ export default Icon3dBoxBottom;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var C=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},m=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of x(o))!L.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=u(o,n))||l.enumerable});return r};var a=(r,o,t)=>(t=r!=null?i(I(r)):{},m(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>m(C({},"__esModule",{value:!0}),r);var v={};P(v,{Icon3dBoxBottom:()=>B,default:()=>g});module.exports=d(v);var e=a(require("react"));var f=a(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>f.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),B=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z",fill:"currentColor"})),g=B;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const Icon3dBoxBottom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["Icon3dBoxBottom_exports","__export","Icon3dBoxBottom","Icon3dBoxBottom_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var m=t=>o.createElement(e,{...t},o.createElement(n,{d:"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z",fill:"currentColor"}),o.createElement(n,{d:"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z",fill:"currentColor"}),o.createElement(n,{d:"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z",fill:"currentColor"})),L=m;export{m as Icon3dBoxBottom,L as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/Icon3dBoxBottom/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const Icon3dBoxBottom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sQACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFlashcards: FC<CentralIconBaseProps>;
4
+ export default IconFlashcards;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return r};var s=(r,o,t)=>(t=r!=null?i(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var h={};P(h,{IconFlashcards:()=>L,default:()=>d});module.exports=g(h);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),L=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z",fill:"currentColor"})),d=L;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFlashcards: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlashcards;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFlashcards_exports","__export","IconFlashcards","IconFlashcards_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFlashcards","props","React","CentralIconBase","IconFlashcards_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z",fill:"currentColor"}),t.createElement(n,{d:"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z",fill:"currentColor"})),x=a;export{a as IconFlashcards,x 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFlashcards: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlashcards;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gSACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFlashcards","props","React","CentralIconBase","IconFlashcards_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBrush: FC<CentralIconBaseProps>;
4
+ export default IconPaintBrush;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),H=r=>a(e({},"__esModule",{value:!0}),r);var v={};g(v,{IconPaintBrush:()=>i,default:()=>h});module.exports=H(v);var p=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(f.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z",fill:"currentColor"}),p.default.createElement(C.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 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z",fill:"currentColor"})),h=i;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBrush: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z\"\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 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBrush;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,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","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPaintBrush","props","React","CentralIconBase","IconPaintBrush_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var a=o=>t.createElement(n,{...o},t.createElement(e,{d:"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z",fill:"currentColor"}),t.createElement(e,{d:"M8 2C8.31476 2 8.61095 2.14858 8.7998 2.40039L10 4L11.2002 2.40039C11.3891 2.14858 11.6852 2 12 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z",fill:"currentColor"})),x=a;export{a as IconPaintBrush,x 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBrush: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z\"\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 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBrush;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yLACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPaintBrush","props","React","CentralIconBase","IconPaintBrush_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBucket: FC<CentralIconBaseProps>;
4
+ export default IconPaintBucket;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!d.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(P(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var H={};v(H,{IconPaintBucket:()=>i,default:()=>g});module.exports=x(H);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(s,{...o},C.default.createElement(f.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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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"})),g=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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBucket: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,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","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPaintBucket","props","React","CentralIconBase","IconPaintBucket_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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=a;export{a 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBucket: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ucACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPaintBucket","props","React","CentralIconBase","IconPaintBucket_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPaintBucketDrop: FC<CentralIconBaseProps>;
4
+ export default IconPaintBucketDrop;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=B(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(L(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var d={};x(d,{IconPaintBucketDrop:()=>i,default:()=>v});module.exports=g(d);var C=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>s.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z",fill:"currentColor"})),v=i;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBucketDrop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucketDrop;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+gBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPaintBucketDrop_exports","__export","IconPaintBucketDrop","IconPaintBucketDrop_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPaintBucketDrop","props","React","CentralIconBase","IconPaintBucketDrop_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z",fill:"currentColor"}),t.createElement(n,{d:"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z",fill:"currentColor"})),P=a;export{a as IconPaintBucketDrop,P 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaintBucketDrop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucketDrop;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+gBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPaintBucketDrop","props","React","CentralIconBase","IconPaintBucketDrop_default"]}
package/README.md CHANGED
@@ -300,6 +300,7 @@ Below is a complete list of available icons:
300
300
 
301
301
  ### Augmented Reality
302
302
 
303
+ - Icon3dBoxBottom
303
304
  - Icon3dBoxTop
304
305
  - Icon3dSphere
305
306
  - IconAr
@@ -573,6 +574,9 @@ Below is a complete list of available icons:
573
574
  - IconMarkdown
574
575
  - IconMarker
575
576
  - IconMarkerCircle
577
+ - IconPaintBrush
578
+ - IconPaintBucket
579
+ - IconPaintBucketDrop
576
580
  - IconPencil
577
581
  - IconPencilLine
578
582
  - IconPencilWave
@@ -1529,6 +1533,7 @@ Below is a complete list of available icons:
1529
1533
  - IconFire3
1530
1534
  - IconFlag1
1531
1535
  - IconFlag2
1536
+ - IconFlashcards
1532
1537
  - IconFootsteps
1533
1538
  - IconForYou
1534
1539
  - IconGalaxy
@@ -1,5 +1,19 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "category": "Augmented Reality",
5
+ "svg": "<path d=\"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z\" fill=\"currentColor\"/><path d=\"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z\" fill=\"currentColor\"/><path d=\"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z\" fill=\"currentColor\"/>",
6
+ "iconName": "3d-box-bottom, shaders, model, room",
7
+ "variant": {
8
+ "join": "round",
9
+ "filled": "on",
10
+ "radius": "1",
11
+ "stroke": "2"
12
+ },
13
+ "createdAt": "2025-08-29T06:00:20.162384+00:00",
14
+ "packageName": "round-filled-radius-1-stroke-2",
15
+ "componentName": "Icon3dBoxBottom"
16
+ },
3
17
  {
4
18
  "category": "Augmented Reality",
5
19
  "svg": "<path d=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.33998 18.1545C2.7211 17.7972 2.33984 17.1369 2.33984 16.4223V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\" fill=\"currentColor\"/><path d=\"M21.6602 16.4223C21.6602 17.1369 21.2789 17.7972 20.66 18.1545L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V16.4223Z\" fill=\"currentColor\"/><path d=\"M19.9092 5.41175C20.2425 5.60419 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L11.0001 1.4229C11.6188 1.06572 12.3811 1.06574 12.9999 1.42295L19.9092 5.41175Z\" fill=\"currentColor\"/>",
@@ -9184,6 +9198,20 @@
9184
9198
  "packageName": "round-filled-radius-1-stroke-2",
9185
9199
  "componentName": "IconFlag2"
9186
9200
  },
9201
+ {
9202
+ "category": "Things",
9203
+ "svg": "<path d=\"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z\" fill=\"currentColor\"/><path d=\"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z\" fill=\"currentColor\"/>",
9204
+ "iconName": "flashcards, cards, pages",
9205
+ "variant": {
9206
+ "join": "round",
9207
+ "filled": "on",
9208
+ "radius": "1",
9209
+ "stroke": "2"
9210
+ },
9211
+ "createdAt": "2025-09-02T09:30:11.696823+00:00",
9212
+ "packageName": "round-filled-radius-1-stroke-2",
9213
+ "componentName": "IconFlashcards"
9214
+ },
9187
9215
  {
9188
9216
  "category": "Folders & Files",
9189
9217
  "svg": "<path d=\"M7 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H7V14C7 12.8954 7.89543 12 9 12H15C16.1046 12 17 12.8954 17 14V21H19C20.1046 21 21 20.1046 21 19V7.41421C21 6.88378 20.7893 6.37507 20.4142 6L18 3.58579C17.7241 3.30991 17.3759 3.12295 17 3.04336V7C17 8.10457 16.1046 9 15 9H9C7.89543 9 7 8.10457 7 7V3Z\" fill=\"currentColor\"/><path d=\"M15 3H9V7H15V3Z\" fill=\"currentColor\"/><path d=\"M15 21V14H9V21H15Z\" fill=\"currentColor\"/>",
@@ -14042,6 +14070,48 @@
14042
14070
  "packageName": "round-filled-radius-1-stroke-2",
14043
14071
  "componentName": "IconPageTextSearch"
14044
14072
  },
14073
+ {
14074
+ "category": "Edit",
14075
+ "svg": "<path d=\"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z\" fill=\"currentColor\"/><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 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z\" fill=\"currentColor\"/>",
14076
+ "iconName": "paint-brush, design, color, appearance",
14077
+ "variant": {
14078
+ "join": "round",
14079
+ "filled": "on",
14080
+ "radius": "1",
14081
+ "stroke": "2"
14082
+ },
14083
+ "createdAt": "2025-09-02T09:00:11.443912+00:00",
14084
+ "packageName": "round-filled-radius-1-stroke-2",
14085
+ "componentName": "IconPaintBrush"
14086
+ },
14087
+ {
14088
+ "category": "Edit",
14089
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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\"/>",
14090
+ "iconName": "paint-bucket, design, color, appearance",
14091
+ "variant": {
14092
+ "join": "round",
14093
+ "filled": "on",
14094
+ "radius": "1",
14095
+ "stroke": "2"
14096
+ },
14097
+ "createdAt": "2025-09-02T09:00:11.443912+00:00",
14098
+ "packageName": "round-filled-radius-1-stroke-2",
14099
+ "componentName": "IconPaintBucket"
14100
+ },
14101
+ {
14102
+ "category": "Edit",
14103
+ "svg": "<path d=\"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z\" fill=\"currentColor\"/><path d=\"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z\" fill=\"currentColor\"/>",
14104
+ "iconName": "paint-bucket-drop",
14105
+ "variant": {
14106
+ "join": "round",
14107
+ "filled": "on",
14108
+ "radius": "1",
14109
+ "stroke": "2"
14110
+ },
14111
+ "createdAt": "2025-09-02T09:30:11.696823+00:00",
14112
+ "packageName": "round-filled-radius-1-stroke-2",
14113
+ "componentName": "IconPaintBucketDrop"
14114
+ },
14045
14115
  {
14046
14116
  "category": "Food",
14047
14117
  "svg": "<path d=\"M3 5C3 4.44772 3.44772 4 4 4H20C20.5523 4 21 4.44772 21 5C21 5.55228 20.5523 6 20 6H15C14.4477 6 14 6.44772 14 7V10.5C14 11.3284 13.3284 12 12.5 12C11.6716 12 11 11.3284 11 10.5V14.5C11 15.3284 10.3284 16 9.5 16C8.67157 16 8 15.3284 8 14.5V7C8 6.44772 7.55228 6 7 6H4C3.44772 6 3 5.55228 3 5Z\" fill=\"currentColor\"/><path d=\"M21 8.5C21 7.94772 20.5523 7.5 20 7.5H16V9.5H20C20.5523 9.5 21 9.05228 21 8.5Z\" fill=\"currentColor\"/><path d=\"M15.9646 11C15.8532 11.7788 15.4854 12.4749 14.9495 13H21C21.5523 13 22 12.5523 22 12C22 11.4477 21.5523 11 21 11H15.9646Z\" fill=\"currentColor\"/><path d=\"M6 7.5H3C2.44772 7.5 2 7.94772 2 8.5C2 9.05228 2.44772 9.5 3 9.5H6V7.5Z\" fill=\"currentColor\"/><path d=\"M6 11H4C3.44772 11 3 11.4477 3 12C3 12.5523 3.44772 13 4 13H6V11Z\" fill=\"currentColor\"/><path d=\"M6 14.5H4C3.44772 14.5 3 14.9477 3 15.5C3 16.0523 3.44772 16.5 4 16.5H6.62734C6.23191 15.9331 6 15.2436 6 14.5Z\" fill=\"currentColor\"/><path d=\"M12.3727 16.5C12.7681 15.9331 13 15.2436 13 14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H12.3727Z\" fill=\"currentColor\"/><path d=\"M23 19C23 18.4477 22.5523 18 22 18H2C1.44772 18 1 18.4477 1 19C1 19.5523 1.44772 20 2 20H22C22.5523 20 23 19.5523 23 19Z\" fill=\"currentColor\"/>",
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"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-1-stroke-2",
3
- "version": "0.0.60",
3
+ "version": "1.0.0",
4
4
  "style": "round-filled-radius-1-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1513,
14
+ "totalIcons": 1518,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 32,
@@ -178,8 +178,9 @@
178
178
  ]
179
179
  },
180
180
  "Augmented Reality": {
181
- "count": 16,
181
+ "count": 17,
182
182
  "icons": [
183
+ "Icon3dBoxBottom",
183
184
  "Icon3dBoxTop",
184
185
  "Icon3dSphere",
185
186
  "IconAr",
@@ -426,7 +427,7 @@
426
427
  ]
427
428
  },
428
429
  "Edit": {
429
- "count": 62,
430
+ "count": 65,
430
431
  "icons": [
431
432
  "IconAddKeyframe",
432
433
  "IconBezier",
@@ -467,6 +468,9 @@
467
468
  "IconMarkdown",
468
469
  "IconMarker",
469
470
  "IconMarkerCircle",
471
+ "IconPaintBrush",
472
+ "IconPaintBucket",
473
+ "IconPaintBucketDrop",
470
474
  "IconPencil",
471
475
  "IconPencilLine",
472
476
  "IconPencilWave",
@@ -1418,7 +1422,7 @@
1418
1422
  ]
1419
1423
  },
1420
1424
  "Things": {
1421
- "count": 118,
1425
+ "count": 119,
1422
1426
  "icons": [
1423
1427
  "IconAlien",
1424
1428
  "IconBackpack",
@@ -1463,6 +1467,7 @@
1463
1467
  "IconFire3",
1464
1468
  "IconFlag1",
1465
1469
  "IconFlag2",
1470
+ "IconFlashcards",
1466
1471
  "IconFootsteps",
1467
1472
  "IconForYou",
1468
1473
  "IconGalaxy",
@@ -1703,6 +1708,7 @@
1703
1708
  }
1704
1709
  },
1705
1710
  "iconAliases": {
1711
+ "Icon3dBoxBottom": "3d-box-bottom, shaders, model, room",
1706
1712
  "Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
1707
1713
  "Icon3dSphere": "3d-sphere",
1708
1714
  "Icon4k": "4k",
@@ -2359,6 +2365,7 @@
2359
2365
  "IconFistbump": "fistbump, boom, hands, friends",
2360
2366
  "IconFlag1": "flag-1, priority",
2361
2367
  "IconFlag2": "flag-2, priority",
2368
+ "IconFlashcards": "flashcards, cards, pages",
2362
2369
  "IconFloppyDisk1": "floppy-disk-1, save",
2363
2370
  "IconFloppyDisk2": "floppy-disk-2, save",
2364
2371
  "IconFocusAuto": "focus-auto",
@@ -2706,6 +2713,9 @@
2706
2713
  "IconPageTextLock": "page-text-lock",
2707
2714
  "IconPageTextPieChart": "page-text-pie-chart",
2708
2715
  "IconPageTextSearch": "page-text-search",
2716
+ "IconPaintBrush": "paint-brush, design, color, appearance",
2717
+ "IconPaintBucket": "paint-bucket, design, color, appearance",
2718
+ "IconPaintBucketDrop": "paint-bucket-drop",
2709
2719
  "IconPancakes": "pancakes, maple-syrup, breakfast",
2710
2720
  "IconPanoramaView": "panorama-view",
2711
2721
  "IconPaperclip1": "paperclip-1, attachment",
package/license-check.js CHANGED
@@ -18,7 +18,7 @@ const licenseCheck = async () => {
18
18
  },
19
19
  body: JSON.stringify({
20
20
  package: "central-icons-react-native/round-filled-radius-1-stroke-2",
21
- version: "0.0.60",
21
+ version: "1.0.0",
22
22
  }),
23
23
  signal: controller.signal,
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react-native/round-filled-radius-1-stroke-2",
3
- "version": "0.0.60",
3
+ "version": "1.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "bugs": {
package/tsx-icons.json CHANGED
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "svg": "<Path d=\"M10.75 11.5669C10.9047 11.4776 11 11.3125 11 11.1339V2.2895C11 1.90462 10.5834 1.66406 10.25 1.85647L3.33998 5.84526C2.7211 6.2025 2.33984 6.8628 2.33984 7.57739V15.5566C2.33984 15.9415 2.75651 16.182 3.08985 15.9896L10.75 11.5669Z\" fill=\"currentColor\"/><Path d=\"M21.6602 7.57739C21.6602 6.8628 21.2789 6.2025 20.66 5.84526L13.75 1.85647C13.4166 1.66406 13 1.90462 13 2.2895V11.1339C13 11.3125 13.0953 11.4776 13.25 11.5669L20.9102 15.9896C21.2435 16.182 21.6602 15.9415 21.6602 15.5566V7.57739Z\" fill=\"currentColor\"/><Path d=\"M19.9092 18.588C20.2425 18.3955 20.2425 17.9144 19.9092 17.722L12.25 13.2994C12.0953 13.21 11.9047 13.21 11.75 13.2994L4.08991 17.7219C3.75656 17.9144 3.75658 18.3956 4.08994 18.588L11.0001 22.5768C11.6188 22.934 12.3811 22.934 12.9999 22.5768L19.9092 18.588Z\" fill=\"currentColor\"/>",
5
+ "tags": "Path",
6
+ "componentName": "Icon3dBoxBottom",
7
+ "iconName": "3d-box-bottom, shaders, model, room",
8
+ "pathname": "src/Icon3dBoxBottom"
9
+ },
3
10
  {
4
11
  "svg": "<Path d=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.33998 18.1545C2.7211 17.7972 2.33984 17.1369 2.33984 16.4223V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\" fill=\"currentColor\"/><Path d=\"M21.6602 16.4223C21.6602 17.1369 21.2789 17.7972 20.66 18.1545L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V16.4223Z\" fill=\"currentColor\"/><Path d=\"M19.9092 5.41175C20.2425 5.60419 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L11.0001 1.4229C11.6188 1.06572 12.3811 1.06574 12.9999 1.42295L19.9092 5.41175Z\" fill=\"currentColor\"/>",
5
12
  "tags": "Path",
@@ -4592,6 +4599,13 @@
4592
4599
  "iconName": "flag-2, priority",
4593
4600
  "pathname": "src/IconFlag2"
4594
4601
  },
4602
+ {
4603
+ "svg": "<Path d=\"M3.21034 10.0343C3.09488 8.93582 3.89181 7.9517 4.99032 7.83624L10.9575 7.20907C12.056 7.09361 13.0401 7.89054 13.1556 8.98906L14.2042 18.9662C14.3197 20.0647 13.5227 21.0489 12.4242 21.1643L6.45708 21.7915C5.35856 21.907 4.37444 21.11 4.25898 20.0115L3.21034 10.0343Z\" fill=\"currentColor\"/><Path d=\"M13.1566 2.20832L19.1243 2.83625C20.2227 2.95181 21.0201 3.93604 20.9046 5.0345L19.8558 15.0111C19.7403 16.1095 18.756 16.9067 17.6575 16.7913L15.6624 16.5814L14.846 8.81086C14.6329 6.78499 12.8228 5.31327 10.7982 5.51594L10.9593 3.9886C11.0748 2.89035 12.0583 2.09318 13.1566 2.20832Z\" fill=\"currentColor\"/>",
4604
+ "tags": "Path",
4605
+ "componentName": "IconFlashcards",
4606
+ "iconName": "flashcards, cards, pages",
4607
+ "pathname": "src/IconFlashcards"
4608
+ },
4595
4609
  {
4596
4610
  "svg": "<Path d=\"M7 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H7V14C7 12.8954 7.89543 12 9 12H15C16.1046 12 17 12.8954 17 14V21H19C20.1046 21 21 20.1046 21 19V7.41421C21 6.88378 20.7893 6.37507 20.4142 6L18 3.58579C17.7241 3.30991 17.3759 3.12295 17 3.04336V7C17 8.10457 16.1046 9 15 9H9C7.89543 9 7 8.10457 7 7V3Z\" fill=\"currentColor\"/><Path d=\"M15 3H9V7H15V3Z\" fill=\"currentColor\"/><Path d=\"M15 21V14H9V21H15Z\" fill=\"currentColor\"/>",
4597
4611
  "tags": "Path",
@@ -7021,6 +7035,27 @@
7021
7035
  "iconName": "page-text-search",
7022
7036
  "pathname": "src/IconPageTextSearch"
7023
7037
  },
7038
+ {
7039
+ "svg": "<Path d=\"M20 13C20 14.1046 19.1046 15 18 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 15H6C4.89543 15 4 14.1046 4 13V12H20V13Z\" fill=\"currentColor\"/><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 2H18C19.1046 2 20 2.89543 20 4V10H4V4C4 2.89543 4.89543 2 6 2H8Z\" fill=\"currentColor\"/>",
7040
+ "tags": "Path",
7041
+ "componentName": "IconPaintBrush",
7042
+ "iconName": "paint-brush, design, color, appearance",
7043
+ "pathname": "src/IconPaintBrush"
7044
+ },
7045
+ {
7046
+ "svg": "<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 10V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V10C3.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\"/>",
7047
+ "tags": "Path",
7048
+ "componentName": "IconPaintBucket",
7049
+ "iconName": "paint-bucket, design, color, appearance",
7050
+ "pathname": "src/IconPaintBucket"
7051
+ },
7052
+ {
7053
+ "svg": "<Path d=\"M19.9499 16.2623C20.122 16.1042 20.3783 16.1043 20.5505 16.2623C21.1633 16.8255 22.5006 18.2129 22.5006 19.6002C22.5006 20.9256 21.4931 22.0004 20.2506 22.0006C19.008 22.0006 18.0007 20.9257 18.0006 19.6002C18.0006 18.2129 19.337 16.8255 19.9499 16.2623Z\" fill=\"currentColor\"/><Path d=\"M9.38444 2.91273C10.1207 1.95707 11.5301 1.86564 12.3835 2.71839L20.6735 11.0075C21.5267 11.8609 21.4343 13.2712 20.4782 14.0075L11.1979 21.1481C9.60549 22.3732 7.35113 22.2269 5.93034 20.8063L2.58561 17.4616C1.16505 16.0407 1.01848 13.7854 2.24381 12.193L3.79166 10.1793L10.2135 13.2213C10.7126 13.4577 11.309 13.2456 11.5456 12.7467C11.7616 12.2901 11.6002 11.7533 11.1891 11.484L2.57291 7.40297C2.07384 7.16656 1.861 6.57101 2.09733 6.07191C2.33389 5.57317 2.92945 5.36007 3.42838 5.59632L6.27897 6.94691L9.38444 2.91273Z\" fill=\"currentColor\"/>",
7054
+ "tags": "Path",
7055
+ "componentName": "IconPaintBucketDrop",
7056
+ "iconName": "paint-bucket-drop",
7057
+ "pathname": "src/IconPaintBucketDrop"
7058
+ },
7024
7059
  {
7025
7060
  "svg": "<Path d=\"M3 5C3 4.44772 3.44772 4 4 4H20C20.5523 4 21 4.44772 21 5C21 5.55228 20.5523 6 20 6H15C14.4477 6 14 6.44772 14 7V10.5C14 11.3284 13.3284 12 12.5 12C11.6716 12 11 11.3284 11 10.5V14.5C11 15.3284 10.3284 16 9.5 16C8.67157 16 8 15.3284 8 14.5V7C8 6.44772 7.55228 6 7 6H4C3.44772 6 3 5.55228 3 5Z\" fill=\"currentColor\"/><Path d=\"M21 8.5C21 7.94772 20.5523 7.5 20 7.5H16V9.5H20C20.5523 9.5 21 9.05228 21 8.5Z\" fill=\"currentColor\"/><Path d=\"M15.9646 11C15.8532 11.7788 15.4854 12.4749 14.9495 13H21C21.5523 13 22 12.5523 22 12C22 11.4477 21.5523 11 21 11H15.9646Z\" fill=\"currentColor\"/><Path d=\"M6 7.5H3C2.44772 7.5 2 7.94772 2 8.5C2 9.05228 2.44772 9.5 3 9.5H6V7.5Z\" fill=\"currentColor\"/><Path d=\"M6 11H4C3.44772 11 3 11.4477 3 12C3 12.5523 3.44772 13 4 13H6V11Z\" fill=\"currentColor\"/><Path d=\"M6 14.5H4C3.44772 14.5 3 14.9477 3 15.5C3 16.0523 3.44772 16.5 4 16.5H6.62734C6.23191 15.9331 6 15.2436 6 14.5Z\" fill=\"currentColor\"/><Path d=\"M12.3727 16.5C12.7681 15.9331 13 15.2436 13 14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H12.3727Z\" fill=\"currentColor\"/><Path d=\"M23 19C23 18.4477 22.5523 18 22 18H2C1.44772 18 1 18.4477 1 19C1 19.5523 1.44772 20 2 20H22C22.5523 20 23 19.5523 23 19Z\" fill=\"currentColor\"/>",
7026
7061
  "tags": "Path",