@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.20 → 1.1.22
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/IconAnvil/index.d.ts +4 -0
- package/IconAnvil/index.js +2 -0
- package/IconAnvil/index.js.map +1 -0
- package/IconAnvil/index.mjs +2 -0
- package/IconAnvil/index.mjs.map +1 -0
- package/IconCrossMedium/index.d.ts +4 -0
- package/IconCrossMedium/index.js +2 -0
- package/IconCrossMedium/index.js.map +1 -0
- package/IconCrossMedium/index.mjs +2 -0
- package/IconCrossMedium/index.mjs.map +1 -0
- package/IconPlan/index.d.ts +4 -0
- package/IconPlan/index.js +2 -0
- package/IconPlan/index.js.map +1 -0
- package/IconPlan/index.mjs +2 -0
- package/IconPlan/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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=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))!P.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(x(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(e({},"__esModule",{value:!0}),r);var d={};g(d,{IconAnvil:()=>i,default:()=>V});module.exports=v(d);var C=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 p=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M21 7.37722C21 9.08391 19.8384 10.5716 18.1826 10.9854C17.4876 11.1592 17 11.7835 17 12.5C17 13.2165 17.4876 13.8408 18.1826 14.0146C19.8384 14.4284 21 15.9161 21 17.6228V18C21 19.1046 20.1046 20 19 20H6C4.89543 20 4 19.1046 4 18V17.4537C4 15.8464 5.09397 14.4454 6.65332 14.0557C7.44458 13.8578 8 13.1467 8 12.3311C7.99985 11.6487 7.60922 11.0297 7 10.7334V4H19C20.1046 4 21 4.89543 21 6V7.37722Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M5 9.87305L3.17441 9.09084C1.85531 8.52565 1 7.22867 1 5.79359C1 4.80302 1.80302 4 2.79359 4H5V9.87305Z",fill:"currentColor"})),V=i;0&&(module.exports={IconAnvil});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAnvil/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 IconAnvil: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 7.37722C21 9.08391 19.8384 10.5716 18.1826 10.9854C17.4876 11.1592 17 11.7835 17 12.5C17 13.2165 17.4876 13.8408 18.1826 14.0146C19.8384 14.4284 21 15.9161 21 17.6228V18C21 19.1046 20.1046 20 19 20H6C4.89543 20 4 19.1046 4 18V17.4537C4 15.8464 5.09397 14.4454 6.65332 14.0557C7.44458 13.8578 8 13.1467 8 12.3311C7.99985 11.6487 7.60922 11.0297 7 10.7334V4H19C20.1046 4 21 4.89543 21 6V7.37722Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 9.87305L3.17441 9.09084C1.85531 8.52565 1 7.22867 1 5.79359C1 4.80302 1.80302 4 2.79359 4H5V9.87305Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnvil;\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,eAAAE,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,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gZACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAnvil_exports","__export","IconAnvil","IconAnvil_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAnvil","props","React","CentralIconBase","IconAnvil_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({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 e}from"react-native-svg";var a=o=>t.createElement(n,{...o},t.createElement(e,{d:"M21 7.37722C21 9.08391 19.8384 10.5716 18.1826 10.9854C17.4876 11.1592 17 11.7835 17 12.5C17 13.2165 17.4876 13.8408 18.1826 14.0146C19.8384 14.4284 21 15.9161 21 17.6228V18C21 19.1046 20.1046 20 19 20H6C4.89543 20 4 19.1046 4 18V17.4537C4 15.8464 5.09397 14.4454 6.65332 14.0557C7.44458 13.8578 8 13.1467 8 12.3311C7.99985 11.6487 7.60922 11.0297 7 10.7334V4H19C20.1046 4 21 4.89543 21 6V7.37722Z",fill:"currentColor"}),t.createElement(e,{d:"M5 9.87305L3.17441 9.09084C1.85531 8.52565 1 7.22867 1 5.79359C1 4.80302 1.80302 4 2.79359 4H5V9.87305Z",fill:"currentColor"})),P=a;export{a as IconAnvil,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAnvil/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 IconAnvil: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 7.37722C21 9.08391 19.8384 10.5716 18.1826 10.9854C17.4876 11.1592 17 11.7835 17 12.5C17 13.2165 17.4876 13.8408 18.1826 14.0146C19.8384 14.4284 21 15.9161 21 17.6228V18C21 19.1046 20.1046 20 19 20H6C4.89543 20 4 19.1046 4 18V17.4537C4 15.8464 5.09397 14.4454 6.65332 14.0557C7.44458 13.8578 8 13.1467 8 12.3311C7.99985 11.6487 7.60922 11.0297 7 10.7334V4H19C20.1046 4 21 4.89543 21 6V7.37722Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 9.87305L3.17441 9.09084C1.85531 8.52565 1 7.22867 1 5.79359C1 4.80302 1.80302 4 2.79359 4H5V9.87305Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnvil;\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,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gZACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0GACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAnvil","props","React","CentralIconBase","IconAnvil_default"]}
|
|
@@ -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,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,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=B(o,e))||C.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={};P(d,{IconCrossMedium:()=>i,default:()=>v});module.exports=g(d);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(l.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 f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M16.793 5.79289C17.1835 5.40237 17.8165 5.40237 18.207 5.79289C18.5975 6.18342 18.5975 6.81643 18.207 7.20696L13.414 11.9999L18.207 16.7929C18.5975 17.1834 18.5975 17.8164 18.207 18.207C17.8165 18.5975 17.1835 18.5975 16.793 18.207L12 13.414L7.20702 18.207C6.81649 18.5975 6.18348 18.5975 5.79295 18.207C5.40243 17.8164 5.40243 17.1834 5.79295 16.7929L10.5859 11.9999L5.79295 7.20696C5.40243 6.81643 5.40243 6.18342 5.79295 5.79289C6.18348 5.40237 6.81649 5.40237 7.20702 5.79289L12 10.5859L16.793 5.79289Z",fill:"currentColor"})),v=i;0&&(module.exports={IconCrossMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCrossMedium/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 IconCrossMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.793 5.79289C17.1835 5.40237 17.8165 5.40237 18.207 5.79289C18.5975 6.18342 18.5975 6.81643 18.207 7.20696L13.414 11.9999L18.207 16.7929C18.5975 17.1834 18.5975 17.8164 18.207 18.207C17.8165 18.5975 17.1835 18.5975 16.793 18.207L12 13.414L7.20702 18.207C6.81649 18.5975 6.18348 18.5975 5.79295 18.207C5.40243 17.8164 5.40243 17.1834 5.79295 16.7929L10.5859 11.9999L5.79295 7.20696C5.40243 6.81643 5.40243 6.18342 5.79295 5.79289C6.18348 5.40237 6.81649 5.40237 7.20702 5.79289L12 10.5859L16.793 5.79289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCrossMedium;\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,6fACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCrossMedium_exports","__export","IconCrossMedium","IconCrossMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCrossMedium","props","React","CentralIconBase","IconCrossMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,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 a}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M16.793 5.79289C17.1835 5.40237 17.8165 5.40237 18.207 5.79289C18.5975 6.18342 18.5975 6.81643 18.207 7.20696L13.414 11.9999L18.207 16.7929C18.5975 17.1834 18.5975 17.8164 18.207 18.207C17.8165 18.5975 17.1835 18.5975 16.793 18.207L12 13.414L7.20702 18.207C6.81649 18.5975 6.18348 18.5975 5.79295 18.207C5.40243 17.8164 5.40243 17.1834 5.79295 16.7929L10.5859 11.9999L5.79295 7.20696C5.40243 6.81643 5.40243 6.18342 5.79295 5.79289C6.18348 5.40237 6.81649 5.40237 7.20702 5.79289L12 10.5859L16.793 5.79289Z",fill:"currentColor"})),x=m;export{m as IconCrossMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCrossMedium/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 IconCrossMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.793 5.79289C17.1835 5.40237 17.8165 5.40237 18.207 5.79289C18.5975 6.18342 18.5975 6.81643 18.207 7.20696L13.414 11.9999L18.207 16.7929C18.5975 17.1834 18.5975 17.8164 18.207 18.207C17.8165 18.5975 17.1835 18.5975 16.793 18.207L12 13.414L7.20702 18.207C6.81649 18.5975 6.18348 18.5975 5.79295 18.207C5.40243 17.8164 5.40243 17.1834 5.79295 16.7929L10.5859 11.9999L5.79295 7.20696C5.40243 6.81643 5.40243 6.18342 5.79295 5.79289C6.18348 5.40237 6.81649 5.40237 7.20702 5.79289L12 10.5859L16.793 5.79289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCrossMedium;\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,6fACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCrossMedium","props","React","CentralIconBase","IconCrossMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var P=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=P(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?I(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconPlan:()=>B,default:()=>h});module.exports=v(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.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 f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.9145 10 14.5758 8.94566 14.1455 7.5H9.94629C8.9239 7.50006 8.56055 8.85292 9.44531 9.36523L15.5566 12.9033C18.2113 14.4402 17.1211 18.5 14.0537 18.5H9.85449C9.42417 19.9457 8.08545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.08545 14 9.42417 15.0543 9.85449 16.5H14.0537C15.0762 16.5 15.4395 15.1471 14.5547 14.6348L8.44336 11.0967C5.78882 9.55979 6.87895 5.50006 9.94629 5.5H14.1455C14.5758 4.05434 15.9145 3 17.5 3Z",fill:"currentColor"})),h=B;0&&(module.exports={IconPlan});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPlan/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 IconPlan: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.9145 10 14.5758 8.94566 14.1455 7.5H9.94629C8.9239 7.50006 8.56055 8.85292 9.44531 9.36523L15.5566 12.9033C18.2113 14.4402 17.1211 18.5 14.0537 18.5H9.85449C9.42417 19.9457 8.08545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.08545 14 9.42417 15.0543 9.85449 16.5H14.0537C15.0762 16.5 15.4395 15.1471 14.5547 14.6348L8.44336 11.0967C5.78882 9.55979 6.87895 5.50006 9.94629 5.5H14.1455C14.5758 4.05434 15.9145 3 17.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlan;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qfACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPlan_exports","__export","IconPlan","IconPlan_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPlan","props","React","CentralIconBase","IconPlan_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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 a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.9145 10 14.5758 8.94566 14.1455 7.5H9.94629C8.9239 7.50006 8.56055 8.85292 9.44531 9.36523L15.5566 12.9033C18.2113 14.4402 17.1211 18.5 14.0537 18.5H9.85449C9.42417 19.9457 8.08545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.08545 14 9.42417 15.0543 9.85449 16.5H14.0537C15.0762 16.5 15.4395 15.1471 14.5547 14.6348L8.44336 11.0967C5.78882 9.55979 6.87895 5.50006 9.94629 5.5H14.1455C14.5758 4.05434 15.9145 3 17.5 3Z",fill:"currentColor"})),x=l;export{l as IconPlan,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPlan/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 IconPlan: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.9145 10 14.5758 8.94566 14.1455 7.5H9.94629C8.9239 7.50006 8.56055 8.85292 9.44531 9.36523L15.5566 12.9033C18.2113 14.4402 17.1211 18.5 14.0537 18.5H9.85449C9.42417 19.9457 8.08545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.08545 14 9.42417 15.0543 9.85449 16.5H14.0537C15.0762 16.5 15.4395 15.1471 14.5547 14.6348L8.44336 11.0967C5.78882 9.55979 6.87895 5.50006 9.94629 5.5H14.1455C14.5758 4.05434 15.9145 3 17.5 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlan;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qfACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPlan","props","React","CentralIconBase","IconPlan_default"]}
|
package/README.md
CHANGED
|
@@ -911,6 +911,7 @@ Below is a complete list of available icons:
|
|
|
911
911
|
- IconCompassRound
|
|
912
912
|
- IconCompassSquare
|
|
913
913
|
- IconCrossLarge
|
|
914
|
+
- IconCrossMedium
|
|
914
915
|
- IconCrossSmall
|
|
915
916
|
- IconDeepSearch
|
|
916
917
|
- IconDotGrid1x3Horizontal
|
|
@@ -1528,6 +1529,7 @@ Below is a complete list of available icons:
|
|
|
1528
1529
|
### Things
|
|
1529
1530
|
|
|
1530
1531
|
- IconAlien
|
|
1532
|
+
- IconAnvil
|
|
1531
1533
|
- IconBackpack
|
|
1532
1534
|
- IconBag
|
|
1533
1535
|
- IconBag2
|
|
@@ -1602,6 +1604,7 @@ Below is a complete list of available icons:
|
|
|
1602
1604
|
- IconPillow
|
|
1603
1605
|
- IconPillowZz
|
|
1604
1606
|
- IconPilone
|
|
1607
|
+
- IconPlan
|
|
1605
1608
|
- IconPlayground
|
|
1606
1609
|
- IconPlugin1
|
|
1607
1610
|
- IconPlugin2
|
package/filtered-icons.json
CHANGED
|
@@ -644,6 +644,20 @@
|
|
|
644
644
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
645
645
|
"componentName": "IconAnthropic"
|
|
646
646
|
},
|
|
647
|
+
{
|
|
648
|
+
"category": "Things",
|
|
649
|
+
"svg": "<path d=\"M21 7.37722C21 9.08391 19.8384 10.5716 18.1826 10.9854C17.4876 11.1592 17 11.7835 17 12.5C17 13.2165 17.4876 13.8408 18.1826 14.0146C19.8384 14.4284 21 15.9161 21 17.6228V18C21 19.1046 20.1046 20 19 20H6C4.89543 20 4 19.1046 4 18V17.4537C4 15.8464 5.09397 14.4454 6.65332 14.0557C7.44458 13.8578 8 13.1467 8 12.3311C7.99985 11.6487 7.60922 11.0297 7 10.7334V4H19C20.1046 4 21 4.89543 21 6V7.37722Z\" fill=\"currentColor\"/><path d=\"M5 9.87305L3.17441 9.09084C1.85531 8.52565 1 7.22867 1 5.79359C1 4.80302 1.80302 4 2.79359 4H5V9.87305Z\" fill=\"currentColor\"/>",
|
|
650
|
+
"iconName": "anvil, crafting, hard, strong",
|
|
651
|
+
"variant": {
|
|
652
|
+
"join": "round",
|
|
653
|
+
"filled": "on",
|
|
654
|
+
"radius": "3",
|
|
655
|
+
"stroke": "2"
|
|
656
|
+
},
|
|
657
|
+
"createdAt": "2025-11-03T16:30:49.872096+00:00",
|
|
658
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
659
|
+
"componentName": "IconAnvil"
|
|
660
|
+
},
|
|
647
661
|
{
|
|
648
662
|
"category": "Code",
|
|
649
663
|
"svg": "<path d=\"M12 2.25C9.51472 2.25 7.5 4.26472 7.5 6.75C7.5 9.23528 9.51472 11.25 12 11.25C14.4853 11.25 16.5 9.23528 16.5 6.75C16.5 4.26472 14.4853 2.25 12 2.25Z\" fill=\"currentColor\"/><path d=\"M6.5 11.75C4.01472 11.75 2 13.7647 2 16.25C2 18.7353 4.01472 20.75 6.5 20.75C8.98528 20.75 11 18.7353 11 16.25C11 13.7647 8.98528 11.75 6.5 11.75Z\" fill=\"currentColor\"/><path d=\"M17.5 11.75C15.0147 11.75 13 13.7647 13 16.25C13 18.7353 15.0147 20.75 17.5 20.75C19.9853 20.75 22 18.7353 22 16.25C22 13.7647 19.9853 11.75 17.5 11.75Z\" fill=\"currentColor\"/>",
|
|
@@ -7042,6 +7056,20 @@
|
|
|
7042
7056
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
7043
7057
|
"componentName": "IconCrossLarge"
|
|
7044
7058
|
},
|
|
7059
|
+
{
|
|
7060
|
+
"category": "Interface General",
|
|
7061
|
+
"svg": "<path d=\"M16.793 5.79289C17.1835 5.40237 17.8165 5.40237 18.207 5.79289C18.5975 6.18342 18.5975 6.81643 18.207 7.20696L13.414 11.9999L18.207 16.7929C18.5975 17.1834 18.5975 17.8164 18.207 18.207C17.8165 18.5975 17.1835 18.5975 16.793 18.207L12 13.414L7.20702 18.207C6.81649 18.5975 6.18348 18.5975 5.79295 18.207C5.40243 17.8164 5.40243 17.1834 5.79295 16.7929L10.5859 11.9999L5.79295 7.20696C5.40243 6.81643 5.40243 6.18342 5.79295 5.79289C6.18348 5.40237 6.81649 5.40237 7.20702 5.79289L12 10.5859L16.793 5.79289Z\" fill=\"currentColor\"/>",
|
|
7062
|
+
"iconName": "cross-medium, crossed medium, close",
|
|
7063
|
+
"variant": {
|
|
7064
|
+
"join": "round",
|
|
7065
|
+
"filled": "on",
|
|
7066
|
+
"radius": "3",
|
|
7067
|
+
"stroke": "2"
|
|
7068
|
+
},
|
|
7069
|
+
"createdAt": "2025-10-27T09:30:57.840262+00:00",
|
|
7070
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
7071
|
+
"componentName": "IconCrossMedium"
|
|
7072
|
+
},
|
|
7045
7073
|
{
|
|
7046
7074
|
"category": "Interface General",
|
|
7047
7075
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.18934 7.18934C7.77513 6.60355 8.72487 6.60355 9.31066 7.18934L12 9.87868L14.6893 7.18934C15.2751 6.60355 16.2249 6.60355 16.8107 7.18934C17.3964 7.77513 17.3964 8.72487 16.8107 9.31066L14.1213 12L16.8107 14.6893C17.3964 15.2751 17.3964 16.2249 16.8107 16.8107C16.2249 17.3964 15.2751 17.3964 14.6893 16.8107L12 14.1213L9.31066 16.8107C8.72487 17.3964 7.77513 17.3964 7.18934 16.8107C6.60355 16.2249 6.60355 15.2751 7.18934 14.6893L9.87868 12L7.18934 9.31066C6.60355 8.72487 6.60355 7.77513 7.18934 7.18934Z\" fill=\"currentColor\"/>",
|
|
@@ -15288,6 +15316,20 @@
|
|
|
15288
15316
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
15289
15317
|
"componentName": "IconPlaceholder"
|
|
15290
15318
|
},
|
|
15319
|
+
{
|
|
15320
|
+
"category": "Things",
|
|
15321
|
+
"svg": "<path d=\"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.9145 10 14.5758 8.94566 14.1455 7.5H9.94629C8.9239 7.50006 8.56055 8.85292 9.44531 9.36523L15.5566 12.9033C18.2113 14.4402 17.1211 18.5 14.0537 18.5H9.85449C9.42417 19.9457 8.08545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.08545 14 9.42417 15.0543 9.85449 16.5H14.0537C15.0762 16.5 15.4395 15.1471 14.5547 14.6348L8.44336 11.0967C5.78882 9.55979 6.87895 5.50006 9.94629 5.5H14.1455C14.5758 4.05434 15.9145 3 17.5 3Z\" fill=\"currentColor\"/>",
|
|
15322
|
+
"iconName": "plan, process, connect, path",
|
|
15323
|
+
"variant": {
|
|
15324
|
+
"join": "round",
|
|
15325
|
+
"filled": "on",
|
|
15326
|
+
"radius": "3",
|
|
15327
|
+
"stroke": "2"
|
|
15328
|
+
},
|
|
15329
|
+
"createdAt": "2025-11-03T16:30:49.872096+00:00",
|
|
15330
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
15331
|
+
"componentName": "IconPlan"
|
|
15332
|
+
},
|
|
15291
15333
|
{
|
|
15292
15334
|
"category": "Interface General",
|
|
15293
15335
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.10003 5.20006C9.54185 5.53143 9.6314 6.15823 9.30003 6.60006L6.30002 10.6001C6.13556 10.8193 5.8883 10.9615 5.61604 10.9933C5.34379 11.0251 5.07041 10.9438 4.85984 10.7683L3.35984 9.51828C2.93556 9.16472 2.87824 8.53415 3.2318 8.10987C3.58537 7.6856 4.21593 7.62827 4.64021 7.98184L5.33158 8.55798L7.70003 5.40006C8.0314 4.95823 8.6582 4.86869 9.10003 5.20006ZM12 8.00006C12 7.44777 12.4477 7.00006 13 7.00006H20C20.5523 7.00006 21 7.44777 21 8.00006C21 8.55234 20.5523 9.00006 20 9.00006H13C12.4477 9.00006 12 8.55234 12 8.00006ZM3.00003 16.0001C3.00003 14.3432 4.34318 13.0001 6.00003 13.0001C7.65687 13.0001 9.00003 14.3432 9.00003 16.0001C9.00003 17.657 7.65687 19.0001 6.00003 19.0001C4.34318 19.0001 3.00003 17.657 3.00003 16.0001ZM12 16.0001C12 15.4478 12.4477 15.0001 13 15.0001H20C20.5523 15.0001 21 15.4478 21 16.0001C21 16.5523 20.5523 17.0001 20 17.0001H13C12.4477 17.0001 12 16.5523 12 16.0001Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type CentralIconName =
|
|
|
45
45
|
| "IconAnimationUndershoot"
|
|
46
46
|
| "IconAnonymous"
|
|
47
47
|
| "IconAnthropic"
|
|
48
|
+
| "IconAnvil"
|
|
48
49
|
| "IconApiAggregate"
|
|
49
50
|
| "IconApiConnection"
|
|
50
51
|
| "IconApple"
|
|
@@ -502,6 +503,7 @@ export type CentralIconName =
|
|
|
502
503
|
| "IconCreditCardAdd"
|
|
503
504
|
| "IconCrop"
|
|
504
505
|
| "IconCrossLarge"
|
|
506
|
+
| "IconCrossMedium"
|
|
505
507
|
| "IconCrossSmall"
|
|
506
508
|
| "IconCrown"
|
|
507
509
|
| "IconCrypto"
|
|
@@ -1091,6 +1093,7 @@ export type CentralIconName =
|
|
|
1091
1093
|
| "IconPinterestSimple"
|
|
1092
1094
|
| "IconPizza"
|
|
1093
1095
|
| "IconPlaceholder"
|
|
1096
|
+
| "IconPlan"
|
|
1094
1097
|
| "IconPlanning"
|
|
1095
1098
|
| "IconPlay"
|
|
1096
1099
|
| "IconPlayCircle"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-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":
|
|
14
|
+
"totalIcons": 1558,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 44,
|
|
@@ -751,7 +751,7 @@
|
|
|
751
751
|
]
|
|
752
752
|
},
|
|
753
753
|
"Interface General": {
|
|
754
|
-
"count":
|
|
754
|
+
"count": 161,
|
|
755
755
|
"icons": [
|
|
756
756
|
"IconAnchor1",
|
|
757
757
|
"IconAnchor2",
|
|
@@ -815,6 +815,7 @@
|
|
|
815
815
|
"IconCompassRound",
|
|
816
816
|
"IconCompassSquare",
|
|
817
817
|
"IconCrossLarge",
|
|
818
|
+
"IconCrossMedium",
|
|
818
819
|
"IconCrossSmall",
|
|
819
820
|
"IconDeepSearch",
|
|
820
821
|
"IconDotGrid1x3Horizontal",
|
|
@@ -1455,9 +1456,10 @@
|
|
|
1455
1456
|
]
|
|
1456
1457
|
},
|
|
1457
1458
|
"Things": {
|
|
1458
|
-
"count":
|
|
1459
|
+
"count": 124,
|
|
1459
1460
|
"icons": [
|
|
1460
1461
|
"IconAlien",
|
|
1462
|
+
"IconAnvil",
|
|
1461
1463
|
"IconBackpack",
|
|
1462
1464
|
"IconBag",
|
|
1463
1465
|
"IconBag2",
|
|
@@ -1532,6 +1534,7 @@
|
|
|
1532
1534
|
"IconPillow",
|
|
1533
1535
|
"IconPillowZz",
|
|
1534
1536
|
"IconPilone",
|
|
1537
|
+
"IconPlan",
|
|
1535
1538
|
"IconPlayground",
|
|
1536
1539
|
"IconPlugin1",
|
|
1537
1540
|
"IconPlugin2",
|
|
@@ -1791,6 +1794,7 @@
|
|
|
1791
1794
|
"IconAnimationUndershoot": "animation-undershoot",
|
|
1792
1795
|
"IconAnonymous": "anonymous, anonym, hidden",
|
|
1793
1796
|
"IconAnthropic": "anthropic",
|
|
1797
|
+
"IconAnvil": "anvil, crafting, hard, strong",
|
|
1794
1798
|
"IconApiAggregate": "api-aggregate",
|
|
1795
1799
|
"IconApiConnection": "api-connection",
|
|
1796
1800
|
"IconApple": "apple",
|
|
@@ -2248,6 +2252,7 @@
|
|
|
2248
2252
|
"IconCreditCardAdd": "credit-card-add, card, payment",
|
|
2249
2253
|
"IconCrop": "crop",
|
|
2250
2254
|
"IconCrossLarge": "cross-large, crossed large, close",
|
|
2255
|
+
"IconCrossMedium": "cross-medium, crossed medium, close",
|
|
2251
2256
|
"IconCrossSmall": "cross-small, crossed small, delete, remove",
|
|
2252
2257
|
"IconCrown": "crown, vip",
|
|
2253
2258
|
"IconCrypto": "crypto",
|
|
@@ -2837,6 +2842,7 @@
|
|
|
2837
2842
|
"IconPinterestSimple": "pinterest-simple",
|
|
2838
2843
|
"IconPizza": "pizza",
|
|
2839
2844
|
"IconPlaceholder": "placeholder, generate",
|
|
2845
|
+
"IconPlan": "plan, process, connect, path",
|
|
2840
2846
|
"IconPlanning": "planning, list, checklist",
|
|
2841
2847
|
"IconPlay": "play, go",
|
|
2842
2848
|
"IconPlayCircle": "play-circle",
|
package/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { IconAnimationOvershoot, default as IconAnimationOvershootDefault, } fro
|
|
|
44
44
|
export { IconAnimationUndershoot, default as IconAnimationUndershootDefault, } from "./IconAnimationUndershoot";
|
|
45
45
|
export { IconAnonymous, default as IconAnonymousDefault, } from "./IconAnonymous";
|
|
46
46
|
export { IconAnthropic, default as IconAnthropicDefault, } from "./IconAnthropic";
|
|
47
|
+
export { IconAnvil, default as IconAnvilDefault } from "./IconAnvil";
|
|
47
48
|
export { IconApiAggregate, default as IconApiAggregateDefault, } from "./IconApiAggregate";
|
|
48
49
|
export { IconApiConnection, default as IconApiConnectionDefault, } from "./IconApiConnection";
|
|
49
50
|
export { IconApple, default as IconAppleDefault } from "./IconApple";
|
|
@@ -501,6 +502,7 @@ export { IconCreditCard2, default as IconCreditCard2Default, } from "./IconCredi
|
|
|
501
502
|
export { IconCreditCardAdd, default as IconCreditCardAddDefault, } from "./IconCreditCardAdd";
|
|
502
503
|
export { IconCrop, default as IconCropDefault } from "./IconCrop";
|
|
503
504
|
export { IconCrossLarge, default as IconCrossLargeDefault, } from "./IconCrossLarge";
|
|
505
|
+
export { IconCrossMedium, default as IconCrossMediumDefault, } from "./IconCrossMedium";
|
|
504
506
|
export { IconCrossSmall, default as IconCrossSmallDefault, } from "./IconCrossSmall";
|
|
505
507
|
export { IconCrown, default as IconCrownDefault } from "./IconCrown";
|
|
506
508
|
export { IconCrypto, default as IconCryptoDefault } from "./IconCrypto";
|
|
@@ -1090,6 +1092,7 @@ export { IconPinterest, default as IconPinterestDefault, } from "./IconPinterest
|
|
|
1090
1092
|
export { IconPinterestSimple, default as IconPinterestSimpleDefault, } from "./IconPinterestSimple";
|
|
1091
1093
|
export { IconPizza, default as IconPizzaDefault } from "./IconPizza";
|
|
1092
1094
|
export { IconPlaceholder, default as IconPlaceholderDefault, } from "./IconPlaceholder";
|
|
1095
|
+
export { IconPlan, default as IconPlanDefault } from "./IconPlan";
|
|
1093
1096
|
export { IconPlanning, default as IconPlanningDefault } from "./IconPlanning";
|
|
1094
1097
|
export { IconPlay, default as IconPlayDefault } from "./IconPlay";
|
|
1095
1098
|
export { IconPlayCircle, default as IconPlayCircleDefault, } from "./IconPlayCircle";
|