@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.45 → 1.1.48
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/IconExclamationCircle/index.d.ts +4 -0
- package/IconExclamationCircle/index.js +2 -0
- package/IconExclamationCircle/index.js.map +1 -0
- package/IconExclamationCircle/index.mjs +2 -0
- package/IconExclamationCircle/index.mjs.map +1 -0
- package/IconExclamationTriangle/index.d.ts +4 -0
- package/{IconTriangleExclamation → IconExclamationTriangle}/index.js +1 -1
- package/{IconTriangleExclamation → IconExclamationTriangle}/index.js.map +1 -1
- package/{IconTriangleExclamation → IconExclamationTriangle}/index.mjs +1 -1
- package/{IconTriangleExclamation → IconExclamationTriangle}/index.mjs.map +1 -1
- package/README.md +2 -1
- package/filtered-icons.json +28 -14
- package/icons/index.d.ts +2 -1
- package/icons-index.json +7 -5
- package/index.d.ts +2 -1
- 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 +14 -7
- package/IconTriangleExclamation/index.d.ts +0 -4
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=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 B(r))!d.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=x(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var h={};v(h,{IconExclamationCircle:()=>i,default:()=>g});module.exports=P(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 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 14.5996C11.3373 14.5996 10.7998 15.1371 10.7998 15.7998C10.7999 16.4624 11.3373 17 12 17C12.6627 17 13.2001 16.4625 13.2002 15.7998C13.2002 15.1371 12.6627 14.5996 12 14.5996ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7Z",fill:"currentColor"})),g=i;0&&(module.exports={IconExclamationCircle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationCircle/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 IconExclamationCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 14.5996C11.3373 14.5996 10.7998 15.1371 10.7998 15.7998C10.7999 16.4624 11.3373 17 12 17C12.6627 17 13.2001 16.4625 13.2002 15.7998C13.2002 15.1371 12.6627 14.5996 12 14.5996ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationCircle;\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,SAAS,UACT,SAAS,UACT,EAAE,6ZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconExclamationCircle_exports","__export","IconExclamationCircle","IconExclamationCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconExclamationCircle","props","React","CentralIconBase","IconExclamationCircle_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 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 14.5996C11.3373 14.5996 10.7998 15.1371 10.7998 15.7998C10.7999 16.4624 11.3373 17 12 17C12.6627 17 13.2001 16.4625 13.2002 15.7998C13.2002 15.1371 12.6627 14.5996 12 14.5996ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7Z",fill:"currentColor"})),d=a;export{a as IconExclamationCircle,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationCircle/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 IconExclamationCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 14.5996C11.3373 14.5996 10.7998 15.1371 10.7998 15.7998C10.7999 16.4624 11.3373 17 12 17C12.6627 17 13.2001 16.4625 13.2002 15.7998C13.2002 15.1371 12.6627 14.5996 12 14.5996ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationCircle;\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,SAAS,UACT,SAAS,UACT,EAAE,6ZACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconExclamationCircle","props","React","CentralIconBase","IconExclamationCircle_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var t=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of B(r))!d.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=x(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>l(t({},"__esModule",{value:!0}),o);var h={};g(h,{
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of B(r))!d.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=x(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>l(t({},"__esModule",{value:!0}),o);var h={};g(h,{IconExclamationTriangle:()=>i,default:()=>P});module.exports=v(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:"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z",fill:"currentColor"})),P=i;0&&(module.exports={IconExclamationTriangle});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationTriangle/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 IconExclamationTriangle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationTriangle;\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,6BAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ojBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconExclamationTriangle_exports","__export","IconExclamationTriangle","IconExclamationTriangle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconExclamationTriangle","props","React","CentralIconBase","IconExclamationTriangle_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,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=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z",fill:"currentColor"})),d=a;export{a as
|
|
1
|
+
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,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=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z",fill:"currentColor"})),d=a;export{a as IconExclamationTriangle,d as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationTriangle/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 IconExclamationTriangle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationTriangle;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ojBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconExclamationTriangle","props","React","CentralIconBase","IconExclamationTriangle_default"]}
|
package/README.md
CHANGED
|
@@ -946,6 +946,8 @@ Below is a complete list of available icons:
|
|
|
946
946
|
- IconDoupleCheckmark1Small
|
|
947
947
|
- IconDoupleCheckmark2Small
|
|
948
948
|
- IconElectrocardiogram
|
|
949
|
+
- IconExclamationCircle
|
|
950
|
+
- IconExclamationTriangle
|
|
949
951
|
- IconFeature
|
|
950
952
|
- IconGauge
|
|
951
953
|
- IconHandBell
|
|
@@ -1030,7 +1032,6 @@ Below is a complete list of available icons:
|
|
|
1030
1032
|
- IconTrashCanSimple
|
|
1031
1033
|
- IconTrashPaper
|
|
1032
1034
|
- IconTrashPermanently
|
|
1033
|
-
- IconTriangleExclamation
|
|
1034
1035
|
- IconUnarchiv
|
|
1035
1036
|
- IconUnpin
|
|
1036
1037
|
- IconUntrash
|
package/filtered-icons.json
CHANGED
|
@@ -8834,6 +8834,34 @@
|
|
|
8834
8834
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
8835
8835
|
"componentName": "IconEuro"
|
|
8836
8836
|
},
|
|
8837
|
+
{
|
|
8838
|
+
"category": "Interface General",
|
|
8839
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 14.5996C11.3373 14.5996 10.7998 15.1371 10.7998 15.7998C10.7999 16.4624 11.3373 17 12 17C12.6627 17 13.2001 16.4625 13.2002 15.7998C13.2002 15.1371 12.6627 14.5996 12 14.5996ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7Z\" fill=\"currentColor\"/>",
|
|
8840
|
+
"iconName": "exclamation-circle, info, warning",
|
|
8841
|
+
"variant": {
|
|
8842
|
+
"join": "round",
|
|
8843
|
+
"filled": "on",
|
|
8844
|
+
"radius": "1",
|
|
8845
|
+
"stroke": "2"
|
|
8846
|
+
},
|
|
8847
|
+
"createdAt": "2025-11-27T17:02:11.101509+00:00",
|
|
8848
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
8849
|
+
"componentName": "IconExclamationCircle"
|
|
8850
|
+
},
|
|
8851
|
+
{
|
|
8852
|
+
"category": "Interface General",
|
|
8853
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z\" fill=\"currentColor\"/>",
|
|
8854
|
+
"iconName": "exclamation-triangle, error, warning, alert",
|
|
8855
|
+
"variant": {
|
|
8856
|
+
"join": "round",
|
|
8857
|
+
"filled": "on",
|
|
8858
|
+
"radius": "1",
|
|
8859
|
+
"stroke": "2"
|
|
8860
|
+
},
|
|
8861
|
+
"createdAt": "2025-02-15T21:11:34.177092+00:00",
|
|
8862
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
8863
|
+
"componentName": "IconExclamationTriangle"
|
|
8864
|
+
},
|
|
8837
8865
|
{
|
|
8838
8866
|
"category": "Photography & Video",
|
|
8839
8867
|
"svg": "<path d=\"M10 13C11.1046 13 12 13.8954 12 15V20C12 21.1046 11.1046 22 10 22H4C2.89543 22 2 21.1046 2 20V15C2 13.8954 2.89543 13 4 13H10Z\" fill=\"currentColor\"/><path d=\"M20 3C21.1046 3 22 3.89543 22 5V14C22 15.1046 21.1046 16 20 16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H20V5L5 5V10C5 10.5523 4.55228 11 4 11C3.44772 11 3 10.5523 3 10V5C3 3.89543 3.89543 3 5 3H20Z\" fill=\"currentColor\"/><path d=\"M17 7C17.5523 7 18 7.44772 18 8V11C18 11.5523 17.5523 12 17 12C16.4477 12 16 11.5523 16 11V10.4142L14.7071 11.7071C14.3166 12.0976 13.6834 12.0976 13.2929 11.7071C12.9024 11.3166 12.9024 10.6834 13.2929 10.2929L14.5858 9H14C13.4477 9 13 8.55228 13 8C13 7.44772 13.4477 7 14 7H17Z\" fill=\"currentColor\"/>",
|
|
@@ -21028,20 +21056,6 @@
|
|
|
21028
21056
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
21029
21057
|
"componentName": "IconTrendingCircle"
|
|
21030
21058
|
},
|
|
21031
|
-
{
|
|
21032
|
-
"category": "Interface General",
|
|
21033
|
-
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2768 2.95862C11.0501 1.644 12.9513 1.644 13.7246 2.95862L21.9762 16.9863C22.7604 18.3196 21.7991 20.0003 20.2523 20.0003H3.74913C2.2023 20.0003 1.24099 18.3196 2.02526 16.9863L10.2768 2.95862ZM12 9.00024C12.5523 9.00024 13 9.44796 13 10.0002V12.0002C13 12.5525 12.5523 13.0002 12 13.0002C11.4477 13.0002 11 12.5525 11 12.0002V10.0002C11 9.44796 11.4477 9.00024 12 9.00024ZM10.75 15.0002C10.75 14.3099 11.3096 13.7502 12 13.7502C12.6904 13.7502 13.25 14.3099 13.25 15.0002C13.25 15.6906 12.6904 16.2502 12 16.2502C11.3096 16.2502 10.75 15.6906 10.75 15.0002Z\" fill=\"currentColor\"/>",
|
|
21034
|
-
"iconName": "triangle-exclamation, error, warning, alert",
|
|
21035
|
-
"variant": {
|
|
21036
|
-
"join": "round",
|
|
21037
|
-
"filled": "on",
|
|
21038
|
-
"radius": "1",
|
|
21039
|
-
"stroke": "2"
|
|
21040
|
-
},
|
|
21041
|
-
"createdAt": "2025-02-15T21:11:34.177092+00:00",
|
|
21042
|
-
"packageName": "round-filled-radius-1-stroke-2",
|
|
21043
|
-
"componentName": "IconTriangleExclamation"
|
|
21044
|
-
},
|
|
21045
21059
|
{
|
|
21046
21060
|
"category": "Things",
|
|
21047
21061
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 2C5.89543 2 5 2.89543 5 4H4C2.89543 4 2 4.89543 2 6V7C2 9.09706 3.61375 10.8172 5.66717 10.9864C6.65237 13.0719 8.63747 14.5925 11.0039 14.9297V16H8C6.89543 16 6 16.8954 6 18V20C6 21.1046 6.89543 22 8 22H16C17.1046 22 18 21.1046 18 20V18C18 16.8954 17.1046 16 16 16H13.0039V14.9286C15.3669 14.5892 17.3487 13.0696 18.3328 10.9864C20.3862 10.8172 22 9.09706 22 7V6C22 4.89543 21.1046 4 20 4H19C19 2.89543 18.1046 2 17 2H7ZM4 6H5V8C5 8.25512 5.01365 8.50705 5.04025 8.7551C4.42032 8.41539 4 7.75678 4 7V6ZM20 7C20 7.75678 19.5797 8.41539 18.9597 8.7551C18.9864 8.50705 19 8.25512 19 8V6H20V7Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -630,6 +630,8 @@ export type CentralIconName =
|
|
|
630
630
|
| "IconEsc"
|
|
631
631
|
| "IconEthereum"
|
|
632
632
|
| "IconEuro"
|
|
633
|
+
| "IconExclamationCircle"
|
|
634
|
+
| "IconExclamationTriangle"
|
|
633
635
|
| "IconExpand"
|
|
634
636
|
| "IconExpand315"
|
|
635
637
|
| "IconExpand45"
|
|
@@ -1501,7 +1503,6 @@ export type CentralIconName =
|
|
|
1501
1503
|
| "IconTrending4"
|
|
1502
1504
|
| "IconTrending5"
|
|
1503
1505
|
| "IconTrendingCircle"
|
|
1504
|
-
| "IconTriangleExclamation"
|
|
1505
1506
|
| "IconTrophy"
|
|
1506
1507
|
| "IconTruck"
|
|
1507
1508
|
| "IconTumblr"
|
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": "1.1.
|
|
3
|
+
"version": "1.1.48",
|
|
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":
|
|
14
|
+
"totalIcons": 1609,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 61,
|
|
@@ -773,7 +773,7 @@
|
|
|
773
773
|
]
|
|
774
774
|
},
|
|
775
775
|
"Interface General": {
|
|
776
|
-
"count":
|
|
776
|
+
"count": 170,
|
|
777
777
|
"icons": [
|
|
778
778
|
"IconAnchor1",
|
|
779
779
|
"IconAnchor2",
|
|
@@ -850,6 +850,8 @@
|
|
|
850
850
|
"IconDoupleCheckmark1Small",
|
|
851
851
|
"IconDoupleCheckmark2Small",
|
|
852
852
|
"IconElectrocardiogram",
|
|
853
|
+
"IconExclamationCircle",
|
|
854
|
+
"IconExclamationTriangle",
|
|
853
855
|
"IconFeature",
|
|
854
856
|
"IconGauge",
|
|
855
857
|
"IconHandBell",
|
|
@@ -934,7 +936,6 @@
|
|
|
934
936
|
"IconTrashCanSimple",
|
|
935
937
|
"IconTrashPaper",
|
|
936
938
|
"IconTrashPermanently",
|
|
937
|
-
"IconTriangleExclamation",
|
|
938
939
|
"IconUnarchiv",
|
|
939
940
|
"IconUnpin",
|
|
940
941
|
"IconUntrash",
|
|
@@ -2429,6 +2430,8 @@
|
|
|
2429
2430
|
"IconEsc": "esc, power",
|
|
2430
2431
|
"IconEthereum": "ethereum",
|
|
2431
2432
|
"IconEuro": "euro, currency, money, coin, EURO",
|
|
2433
|
+
"IconExclamationCircle": "exclamation-circle, info, warning",
|
|
2434
|
+
"IconExclamationTriangle": "exclamation-triangle, error, warning, alert",
|
|
2432
2435
|
"IconExpand": "expand, window, layout",
|
|
2433
2436
|
"IconExpand315": "expand-315, enlarge",
|
|
2434
2437
|
"IconExpand45": "expand-45, enlarge",
|
|
@@ -3300,7 +3303,6 @@
|
|
|
3300
3303
|
"IconTrending4": "trending-4, chart",
|
|
3301
3304
|
"IconTrending5": "trending-5, chart, analytics",
|
|
3302
3305
|
"IconTrendingCircle": "trending-circle",
|
|
3303
|
-
"IconTriangleExclamation": "triangle-exclamation, error, warning, alert",
|
|
3304
3306
|
"IconTrophy": "trophy, win, champion",
|
|
3305
3307
|
"IconTruck": "truck, delivery",
|
|
3306
3308
|
"IconTumblr": "tumblr",
|
package/index.d.ts
CHANGED
|
@@ -629,6 +629,8 @@ export { IconEraserSimple, default as IconEraserSimpleDefault, } from "./IconEra
|
|
|
629
629
|
export { IconEsc, default as IconEscDefault } from "./IconEsc";
|
|
630
630
|
export { IconEthereum, default as IconEthereumDefault } from "./IconEthereum";
|
|
631
631
|
export { IconEuro, default as IconEuroDefault } from "./IconEuro";
|
|
632
|
+
export { IconExclamationCircle, default as IconExclamationCircleDefault, } from "./IconExclamationCircle";
|
|
633
|
+
export { IconExclamationTriangle, default as IconExclamationTriangleDefault, } from "./IconExclamationTriangle";
|
|
632
634
|
export { IconExpand, default as IconExpandDefault } from "./IconExpand";
|
|
633
635
|
export { IconExpand315, default as IconExpand315Default, } from "./IconExpand315";
|
|
634
636
|
export { IconExpand45, default as IconExpand45Default } from "./IconExpand45";
|
|
@@ -1500,7 +1502,6 @@ export { IconTrending3, default as IconTrending3Default, } from "./IconTrending3
|
|
|
1500
1502
|
export { IconTrending4, default as IconTrending4Default, } from "./IconTrending4";
|
|
1501
1503
|
export { IconTrending5, default as IconTrending5Default, } from "./IconTrending5";
|
|
1502
1504
|
export { IconTrendingCircle, default as IconTrendingCircleDefault, } from "./IconTrendingCircle";
|
|
1503
|
-
export { IconTriangleExclamation, default as IconTriangleExclamationDefault, } from "./IconTriangleExclamation";
|
|
1504
1505
|
export { IconTrophy, default as IconTrophyDefault } from "./IconTrophy";
|
|
1505
1506
|
export { IconTruck, default as IconTruckDefault } from "./IconTruck";
|
|
1506
1507
|
export { IconTumblr, default as IconTumblrDefault } from "./IconTumblr";
|