@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.9 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconPan/index.d.ts +4 -0
- package/IconPan/index.js +2 -0
- package/IconPan/index.js.map +1 -0
- package/IconPan/index.mjs +2 -0
- package/IconPan/index.mjs.map +1 -0
- package/IconPromptTextToImage/index.d.ts +4 -0
- package/IconPromptTextToImage/index.js +2 -0
- package/IconPromptTextToImage/index.js.map +1 -0
- package/IconPromptTextToImage/index.mjs +2 -0
- package/IconPromptTextToImage/index.mjs.map +1 -0
- package/IconPromptTextToVideo/index.d.ts +4 -0
- package/IconPromptTextToVideo/index.js +2 -0
- package/IconPromptTextToVideo/index.js.map +1 -0
- package/IconPromptTextToVideo/index.mjs +2 -0
- package/IconPromptTextToVideo/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +21 -0
package/IconPan/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var L=Object.create;var l=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)l(r,n,{get:o[n],enumerable:!0})},c=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of d(o))!k.call(r,p)&&p!==n&&l(r,p,{get:()=>o[p],enumerable:!(s=f(o,p))||s.enumerable});return r};var C=(r,o,n)=>(n=r!=null?L(x(r)):{},c(o||!r||!r.__esModule?l(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>c(l({},"__esModule",{value:!0}),r);var y={};B(y,{IconPan:()=>m,default:()=>P});module.exports=I(y);var e=C(require("react"));var i=C(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...n})=>i.default.createElement(u.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),m=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M15.8703 12.9552L23.1963 11.1494M2.80078 16.1767L15.8869 12.9531L16.2634 14.4449C16.6792 16.0928 15.6643 17.7617 13.9964 18.1725L6.95006 19.9084C5.28223 20.3192 3.59309 19.3164 3.17725 17.6686L2.80078 16.1767Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"13.25",cy:"7",r:"0.75",fill:"currentColor"}),e.default.createElement(t.Circle,{cx:"8.75",cy:"9",r:"0.75",fill:"currentColor"}),e.default.createElement(t.Circle,{cx:"4.25",cy:"5.75",r:"0.75",fill:"currentColor"})),P=m;0&&(module.exports={IconPan});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPan/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPan: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.8703 12.9552L23.1963 11.1494M2.80078 16.1767L15.8869 12.9531L16.2634 14.4449C16.6792 16.0928 15.6643 17.7617 13.9964 18.1725L6.95006 19.9084C5.28223 20.3192 3.59309 19.3164 3.17725 17.6686L2.80078 16.1767Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13.25\" cy=\"7\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"8.75\" cy=\"9\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"4.25\" cy=\"5.75\" r=\"0.75\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPan;\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,aAAAE,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,EAA6B,4BAEhBC,EAAqCC,GAE9C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,QAAQ,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,CAC3D,EAIGE,EAAQJ","names":["IconPan_exports","__export","IconPan","IconPan_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPan","props","React","CentralIconBase","IconPan_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as c}from"react-native-svg";var p=({children:n,size:o=24,...l})=>s.createElement(c,{...l,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as e,Path as t}from"react-native-svg";var C=n=>r.createElement(p,{...n},r.createElement(t,{d:"M15.8703 12.9552L23.1963 11.1494M2.80078 16.1767L15.8869 12.9531L16.2634 14.4449C16.6792 16.0928 15.6643 17.7617 13.9964 18.1725L6.95006 19.9084C5.28223 20.3192 3.59309 19.3164 3.17725 17.6686L2.80078 16.1767Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{cx:"13.25",cy:"7",r:"0.75",fill:"currentColor"}),r.createElement(e,{cx:"8.75",cy:"9",r:"0.75",fill:"currentColor"}),r.createElement(e,{cx:"4.25",cy:"5.75",r:"0.75",fill:"currentColor"})),B=C;export{C as IconPan,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPan/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPan: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.8703 12.9552L23.1963 11.1494M2.80078 16.1767L15.8869 12.9531L16.2634 14.4449C16.6792 16.0928 15.6643 17.7617 13.9964 18.1725L6.95006 19.9084C5.28223 20.3192 3.59309 19.3164 3.17725 17.6686L2.80078 16.1767Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13.25\" cy=\"7\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"8.75\" cy=\"9\" r=\"0.75\" fill=\"currentColor\" />\n <Circle cx=\"4.25\" cy=\"5.75\" r=\"0.75\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPan;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAqCC,GAE9CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,QAAQ,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACvDI,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACtDI,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,CAC3D,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconPan","props","React","CentralIconBase","IconPan_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0})},u=(o,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of L(r))!I.call(o,t)&&t!==e&&s(o,t,{get:()=>r[t],enumerable:!(i=k(r,t))||i.enumerable});return o};var a=(o,r,e)=>(e=o!=null?l(f(o)):{},u(r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e,o)),B=o=>u(s({},"__esModule",{value:!0}),o);var g={};x(g,{IconPromptTextToImage:()=>d,default:()=>P});module.exports=B(g);var n=a(require("react"));var m=a(require("react")),C=require("react-native-svg"),c=({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 p=require("react-native-svg"),d=o=>n.default.createElement(c,{...o},n.default.createElement(p.Path,{d:"M1.5 4.5V3.5H6H9.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5.5 15.5V20.5H20.5V5.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M20.5 16L16 11.5L7 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;0&&(module.exports={IconPromptTextToImage});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptTextToImage/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 IconPromptTextToImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M1.5 4.5V3.5H6H9.5V4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15.5V20.5H20.5V5.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 16L16 11.5L7 20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptTextToImage;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPromptTextToImage_exports","__export","IconPromptTextToImage","IconPromptTextToImage_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPromptTextToImage","props","React","CentralIconBase","IconPromptTextToImage_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:o=24,...p})=>s.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var u=n=>r.createElement(t,{...n},r.createElement(e,{d:"M1.5 4.5V3.5H6H9.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M5.5 15.5V20.5H20.5V5.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.5 16L16 11.5L7 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=u;export{u as IconPromptTextToImage,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptTextToImage/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 IconPromptTextToImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M1.5 4.5V3.5H6H9.5V4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15.5V20.5H20.5V5.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 16L16 11.5L7 20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptTextToImage;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPromptTextToImage","props","React","CentralIconBase","IconPromptTextToImage_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of f(r))!x.call(o,t)&&t!==e&&s(o,t,{get:()=>r[t],enumerable:!(i=k(r,t))||i.enumerable});return o};var u=(o,r,e)=>(e=o!=null?c(L(o)):{},C(r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e,o)),I=o=>C(s({},"__esModule",{value:!0}),o);var V={};B(V,{IconPromptTextToVideo:()=>m,default:()=>P});module.exports=I(V);var n=u(require("react"));var a=u(require("react")),d=require("react-native-svg"),l=({children:o,size:r=24,...e})=>a.default.createElement(d.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 p=require("react-native-svg"),m=o=>n.default.createElement(l,{...o},n.default.createElement(p.Path,{d:"M1.5 4.5V3.5H6H9.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5.5 15.5V20.5H20.5V5.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M11 15.5397V10.4603C11 10.0558 11.4553 9.81874 11.7867 10.0507L15.4148 12.5904C15.6992 12.7894 15.6992 13.2106 15.4148 13.4096L11.7867 15.9493C11.4553 16.1813 11 15.9442 11 15.5397Z",stroke:"currentColor",strokeLinejoin:"round"})),P=m;0&&(module.exports={IconPromptTextToVideo});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptTextToVideo/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 IconPromptTextToVideo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M1.5 4.5V3.5H6H9.5V4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15.5V20.5H20.5V5.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 15.5397V10.4603C11 10.0558 11.4553 9.81874 11.7867 10.0507L15.4148 12.5904C15.6992 12.7894 15.6992 13.2106 15.4148 13.4096L11.7867 15.9493C11.4553 16.1813 11 15.9442 11 15.5397Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptTextToVideo;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wLACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPromptTextToVideo_exports","__export","IconPromptTextToVideo","IconPromptTextToVideo_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPromptTextToVideo","props","React","CentralIconBase","IconPromptTextToVideo_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:o=24,...p})=>s.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>r.createElement(t,{...n},r.createElement(e,{d:"M1.5 4.5V3.5H6H9.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M5.5 15.5V20.5H20.5V5.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M11 15.5397V10.4603C11 10.0558 11.4553 9.81874 11.7867 10.0507L15.4148 12.5904C15.6992 12.7894 15.6992 13.2106 15.4148 13.4096L11.7867 15.9493C11.4553 16.1813 11 15.9442 11 15.5397Z",stroke:"currentColor",strokeLinejoin:"round"})),x=C;export{C as IconPromptTextToVideo,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptTextToVideo/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 IconPromptTextToVideo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M1.5 4.5V3.5H6H9.5V4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15.5V20.5H20.5V5.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 15.5397V10.4603C11 10.0558 11.4553 9.81874 11.7867 10.0507L15.4148 12.5904C15.6992 12.7894 15.6992 13.2106 15.4148 13.4096L11.7867 15.9493C11.4553 16.1813 11 15.9442 11 15.5397Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptTextToVideo;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wLACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPromptTextToVideo","props","React","CentralIconBase","IconPromptTextToVideo_default"]}
|
package/README.md
CHANGED
|
@@ -168,6 +168,8 @@ Below is a complete list of available icons:
|
|
|
168
168
|
- IconPencilSparkle
|
|
169
169
|
- IconPrompt
|
|
170
170
|
- IconPrompt1
|
|
171
|
+
- IconPromptTextToImage
|
|
172
|
+
- IconPromptTextToVideo
|
|
171
173
|
- IconRobot
|
|
172
174
|
- IconSearchIntelligence
|
|
173
175
|
- IconSparkle
|
|
@@ -753,6 +755,7 @@ Below is a complete list of available icons:
|
|
|
753
755
|
- IconHotDrinkCup
|
|
754
756
|
- IconIcebowl
|
|
755
757
|
- IconOrange
|
|
758
|
+
- IconPan
|
|
756
759
|
- IconPancakes
|
|
757
760
|
- IconPizza
|
|
758
761
|
- IconPopcorn
|
package/filtered-icons.json
CHANGED
|
@@ -14350,6 +14350,20 @@
|
|
|
14350
14350
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
14351
14351
|
"componentName": "IconPaintBucketDrop"
|
|
14352
14352
|
},
|
|
14353
|
+
{
|
|
14354
|
+
"category": "Food",
|
|
14355
|
+
"svg": "<path d=\"M15.8703 12.9552L23.1963 11.1494M2.80078 16.1767L15.8869 12.9531L16.2634 14.4449C16.6792 16.0928 15.6643 17.7617 13.9964 18.1725L6.95006 19.9084C5.28223 20.3192 3.59309 19.3164 3.17725 17.6686L2.80078 16.1767Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 5L9.5 3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.30391 10.5L3 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"13.25\" cy=\"7\" r=\"0.75\" fill=\"currentColor\"/><circle cx=\"8.75\" cy=\"9\" r=\"0.75\" fill=\"currentColor\"/><circle cx=\"4.25\" cy=\"5.75\" r=\"0.75\" fill=\"currentColor\"/>",
|
|
14356
|
+
"iconName": "pan, cooking, skills",
|
|
14357
|
+
"variant": {
|
|
14358
|
+
"join": "round",
|
|
14359
|
+
"filled": "off",
|
|
14360
|
+
"radius": "0",
|
|
14361
|
+
"stroke": "1"
|
|
14362
|
+
},
|
|
14363
|
+
"createdAt": "2025-10-10T08:30:29.220324+00:00",
|
|
14364
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
14365
|
+
"componentName": "IconPan"
|
|
14366
|
+
},
|
|
14353
14367
|
{
|
|
14354
14368
|
"category": "Food",
|
|
14355
14369
|
"svg": "<path d=\"M14 7.5H20.5V4.5H3.5V7.5H7.5V13C7.5 13.8284 8.17157 14.5 9 14.5C9.82843 14.5 10.5 13.8284 10.5 13V9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 13.5H21.5V16.5H3.5V13.5H7.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 10.5H20.5V13.5H10.5M7.25 10.5H3.5V13.5H7.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 7.5H20.5V10.5H14M7.25 7.5H2.5V10.5H7.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 16.5H3.5V19.5H20.5V16.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 9.5V10C10.5 10.8284 11.1716 11.5 12 11.5C12.8284 11.5 13.5 10.8284 13.5 10V7.5H18.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.5 19.5H22.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -15554,6 +15568,34 @@
|
|
|
15554
15568
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15555
15569
|
"componentName": "IconPrompt1"
|
|
15556
15570
|
},
|
|
15571
|
+
{
|
|
15572
|
+
"category": "AI & Magic",
|
|
15573
|
+
"svg": "<path d=\"M1.5 4.5V3.5H6H9.5V4.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 15.5V20.5H20.5V5.5H13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 16L16 11.5L7 20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
15574
|
+
"iconName": "prompt-text-to-image",
|
|
15575
|
+
"variant": {
|
|
15576
|
+
"join": "round",
|
|
15577
|
+
"filled": "off",
|
|
15578
|
+
"radius": "0",
|
|
15579
|
+
"stroke": "1"
|
|
15580
|
+
},
|
|
15581
|
+
"createdAt": "2025-10-14T07:00:55.523291+00:00",
|
|
15582
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15583
|
+
"componentName": "IconPromptTextToImage"
|
|
15584
|
+
},
|
|
15585
|
+
{
|
|
15586
|
+
"category": "AI & Magic",
|
|
15587
|
+
"svg": "<path d=\"M1.5 4.5V3.5H6H9.5V4.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 3.5V11.5M5.5 11.5H4.5M5.5 11.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 15.5V20.5H20.5V5.5H13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 15.5397V10.4603C11 10.0558 11.4553 9.81874 11.7867 10.0507L15.4148 12.5904C15.6992 12.7894 15.6992 13.2106 15.4148 13.4096L11.7867 15.9493C11.4553 16.1813 11 15.9442 11 15.5397Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
15588
|
+
"iconName": "prompt-text-to-video",
|
|
15589
|
+
"variant": {
|
|
15590
|
+
"join": "round",
|
|
15591
|
+
"filled": "off",
|
|
15592
|
+
"radius": "0",
|
|
15593
|
+
"stroke": "1"
|
|
15594
|
+
},
|
|
15595
|
+
"createdAt": "2025-10-14T07:00:55.523291+00:00",
|
|
15596
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15597
|
+
"componentName": "IconPromptTextToVideo"
|
|
15598
|
+
},
|
|
15557
15599
|
{
|
|
15558
15600
|
"category": "Code",
|
|
15559
15601
|
"svg": "<circle cx=\"6\" cy=\"6\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"6\" cy=\"18\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18\" cy=\"18\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 8.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 6H18V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 3.5L11.5 6L14 8.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1024,6 +1024,7 @@ export type CentralIconName =
|
|
|
1024
1024
|
| "IconPaintBrush"
|
|
1025
1025
|
| "IconPaintBucket"
|
|
1026
1026
|
| "IconPaintBucketDrop"
|
|
1027
|
+
| "IconPan"
|
|
1027
1028
|
| "IconPancakes"
|
|
1028
1029
|
| "IconPanoramaView"
|
|
1029
1030
|
| "IconPaperclip1"
|
|
@@ -1110,6 +1111,8 @@ export type CentralIconName =
|
|
|
1110
1111
|
| "IconProducthunt"
|
|
1111
1112
|
| "IconPrompt"
|
|
1112
1113
|
| "IconPrompt1"
|
|
1114
|
+
| "IconPromptTextToImage"
|
|
1115
|
+
| "IconPromptTextToVideo"
|
|
1113
1116
|
| "IconPullRequest"
|
|
1114
1117
|
| "IconPumpjack"
|
|
1115
1118
|
| "IconPush"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.11",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1544,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 37,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAppleIntelligenceIcon",
|
|
20
20
|
"IconBoxSparkle",
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
"IconPencilSparkle",
|
|
39
39
|
"IconPrompt",
|
|
40
40
|
"IconPrompt1",
|
|
41
|
+
"IconPromptTextToImage",
|
|
42
|
+
"IconPromptTextToVideo",
|
|
41
43
|
"IconRobot",
|
|
42
44
|
"IconSearchIntelligence",
|
|
43
45
|
"IconSparkle",
|
|
@@ -619,7 +621,7 @@
|
|
|
619
621
|
]
|
|
620
622
|
},
|
|
621
623
|
"Food": {
|
|
622
|
-
"count":
|
|
624
|
+
"count": 42,
|
|
623
625
|
"icons": [
|
|
624
626
|
"IconAppleNewton",
|
|
625
627
|
"IconApples",
|
|
@@ -649,6 +651,7 @@
|
|
|
649
651
|
"IconHotDrinkCup",
|
|
650
652
|
"IconIcebowl",
|
|
651
653
|
"IconOrange",
|
|
654
|
+
"IconPan",
|
|
652
655
|
"IconPancakes",
|
|
653
656
|
"IconPizza",
|
|
654
657
|
"IconPopcorn",
|
|
@@ -2756,6 +2759,7 @@
|
|
|
2756
2759
|
"IconPaintBrush": "paint-brush, design, color, appearance",
|
|
2757
2760
|
"IconPaintBucket": "paint-bucket, design, color, appearance",
|
|
2758
2761
|
"IconPaintBucketDrop": "paint-bucket-drop",
|
|
2762
|
+
"IconPan": "pan, cooking, skills",
|
|
2759
2763
|
"IconPancakes": "pancakes, maple-syrup, breakfast",
|
|
2760
2764
|
"IconPanoramaView": "panorama-view",
|
|
2761
2765
|
"IconPaperclip1": "paperclip-1, attachment",
|
|
@@ -2842,6 +2846,8 @@
|
|
|
2842
2846
|
"IconProducthunt": "producthunt",
|
|
2843
2847
|
"IconPrompt": "prompt, scan-text",
|
|
2844
2848
|
"IconPrompt1": "prompt, vibe-designing, box-sparkle",
|
|
2849
|
+
"IconPromptTextToImage": "prompt-text-to-image",
|
|
2850
|
+
"IconPromptTextToVideo": "prompt-text-to-video",
|
|
2845
2851
|
"IconPullRequest": "pull-request",
|
|
2846
2852
|
"IconPumpjack": "pumpjack, oil",
|
|
2847
2853
|
"IconPush": "push, launch, rocket",
|
package/index.d.ts
CHANGED
|
@@ -1023,6 +1023,7 @@ export { IconPageTextSearch, default as IconPageTextSearchDefault, } from "./Ico
|
|
|
1023
1023
|
export { IconPaintBrush, default as IconPaintBrushDefault, } from "./IconPaintBrush";
|
|
1024
1024
|
export { IconPaintBucket, default as IconPaintBucketDefault, } from "./IconPaintBucket";
|
|
1025
1025
|
export { IconPaintBucketDrop, default as IconPaintBucketDropDefault, } from "./IconPaintBucketDrop";
|
|
1026
|
+
export { IconPan, default as IconPanDefault } from "./IconPan";
|
|
1026
1027
|
export { IconPancakes, default as IconPancakesDefault } from "./IconPancakes";
|
|
1027
1028
|
export { IconPanoramaView, default as IconPanoramaViewDefault, } from "./IconPanoramaView";
|
|
1028
1029
|
export { IconPaperPlane, default as IconPaperPlaneDefault, } from "./IconPaperPlane";
|
|
@@ -1109,6 +1110,8 @@ export { IconProcessor, default as IconProcessorDefault, } from "./IconProcessor
|
|
|
1109
1110
|
export { IconProducthunt, default as IconProducthuntDefault, } from "./IconProducthunt";
|
|
1110
1111
|
export { IconPrompt, default as IconPromptDefault } from "./IconPrompt";
|
|
1111
1112
|
export { IconPrompt1, default as IconPrompt1Default } from "./IconPrompt1";
|
|
1113
|
+
export { IconPromptTextToImage, default as IconPromptTextToImageDefault, } from "./IconPromptTextToImage";
|
|
1114
|
+
export { IconPromptTextToVideo, default as IconPromptTextToVideoDefault, } from "./IconPromptTextToVideo";
|
|
1112
1115
|
export { IconPullRequest, default as IconPullRequestDefault, } from "./IconPullRequest";
|
|
1113
1116
|
export { IconPumpjack, default as IconPumpjackDefault } from "./IconPumpjack";
|
|
1114
1117
|
export { IconPush, default as IconPushDefault } from "./IconPush";
|