@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.204 → 1.1.205

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAiSlop: FC<CentralIconBaseProps>;
4
+ export default IconAiSlop;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=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 H(r))!d.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var P={};v(P,{IconAiSlop:()=>i,default:()=>L});module.exports=x(P);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.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(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 2C15.4589 2 15.8584 2.31265 15.9697 2.75781L16.7803 6H20C20.5523 6 21 6.44772 21 7C21 7.55228 20.5523 8 20 8V11.75C20 12.6736 19.6137 13.5061 18.9951 14.0977L18.4971 21.0713C18.4597 21.5945 18.0246 21.9999 17.5 22H6.5C5.97536 22 5.53934 21.5946 5.50195 21.0713L5.08008 15.165C4.41837 14.5701 4 13.7099 4 12.75V8C3.44772 8 3 7.55228 3 7C3 6.44772 3.44772 6 4 6H7.21973L8.03027 2.75781L8.08496 2.59668C8.24245 2.23893 8.59866 2 9 2H15ZM13 13.75C13 14.4404 13.5596 15 14.25 15C14.9404 15 15.5 14.4404 15.5 13.75V11.75C15.5 12.4404 16.0596 13 16.75 13C17.4404 13 18 12.4404 18 11.75V8H13V13.75ZM6 12.75C6 13.4404 6.55964 14 7.25 14C7.94036 14 8.5 13.4404 8.5 12.75V8H6V12.75ZM9.28027 6H14.7197L14.2197 4H9.78027L9.28027 6Z",fill:"currentColor"})),L=i;0&&(module.exports={IconAiSlop});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAiSlop/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 IconAiSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 2C15.4589 2 15.8584 2.31265 15.9697 2.75781L16.7803 6H20C20.5523 6 21 6.44772 21 7C21 7.55228 20.5523 8 20 8V11.75C20 12.6736 19.6137 13.5061 18.9951 14.0977L18.4971 21.0713C18.4597 21.5945 18.0246 21.9999 17.5 22H6.5C5.97536 22 5.53934 21.5946 5.50195 21.0713L5.08008 15.165C4.41837 14.5701 4 13.7099 4 12.75V8C3.44772 8 3 7.55228 3 7C3 6.44772 3.44772 6 4 6H7.21973L8.03027 2.75781L8.08496 2.59668C8.24245 2.23893 8.59866 2 9 2H15ZM13 13.75C13 14.4404 13.5596 15 14.25 15C14.9404 15 15.5 14.4404 15.5 13.75V11.75C15.5 12.4404 16.0596 13 16.75 13C17.4404 13 18 12.4404 18 11.75V8H13V13.75ZM6 12.75C6 13.4404 6.55964 14 7.25 14C7.94036 14 8.5 13.4404 8.5 12.75V8H6V12.75ZM9.28027 6H14.7197L14.2197 4H9.78027L9.28027 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAiSlop;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qtBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAiSlop_exports","__export","IconAiSlop","IconAiSlop_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAiSlop","props","React","CentralIconBase","IconAiSlop_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:"M15 2C15.4589 2 15.8584 2.31265 15.9697 2.75781L16.7803 6H20C20.5523 6 21 6.44772 21 7C21 7.55228 20.5523 8 20 8V11.75C20 12.6736 19.6137 13.5061 18.9951 14.0977L18.4971 21.0713C18.4597 21.5945 18.0246 21.9999 17.5 22H6.5C5.97536 22 5.53934 21.5946 5.50195 21.0713L5.08008 15.165C4.41837 14.5701 4 13.7099 4 12.75V8C3.44772 8 3 7.55228 3 7C3 6.44772 3.44772 6 4 6H7.21973L8.03027 2.75781L8.08496 2.59668C8.24245 2.23893 8.59866 2 9 2H15ZM13 13.75C13 14.4404 13.5596 15 14.25 15C14.9404 15 15.5 14.4404 15.5 13.75V11.75C15.5 12.4404 16.0596 13 16.75 13C17.4404 13 18 12.4404 18 11.75V8H13V13.75ZM6 12.75C6 13.4404 6.55964 14 7.25 14C7.94036 14 8.5 13.4404 8.5 12.75V8H6V12.75ZM9.28027 6H14.7197L14.2197 4H9.78027L9.28027 6Z",fill:"currentColor"})),d=a;export{a as IconAiSlop,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAiSlop/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 IconAiSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 2C15.4589 2 15.8584 2.31265 15.9697 2.75781L16.7803 6H20C20.5523 6 21 6.44772 21 7C21 7.55228 20.5523 8 20 8V11.75C20 12.6736 19.6137 13.5061 18.9951 14.0977L18.4971 21.0713C18.4597 21.5945 18.0246 21.9999 17.5 22H6.5C5.97536 22 5.53934 21.5946 5.50195 21.0713L5.08008 15.165C4.41837 14.5701 4 13.7099 4 12.75V8C3.44772 8 3 7.55228 3 7C3 6.44772 3.44772 6 4 6H7.21973L8.03027 2.75781L8.08496 2.59668C8.24245 2.23893 8.59866 2 9 2H15ZM13 13.75C13 14.4404 13.5596 15 14.25 15C14.9404 15 15.5 14.4404 15.5 13.75V11.75C15.5 12.4404 16.0596 13 16.75 13C17.4404 13 18 12.4404 18 11.75V8H13V13.75ZM6 12.75C6 13.4404 6.55964 14 7.25 14C7.94036 14 8.5 13.4404 8.5 12.75V8H6V12.75ZM9.28027 6H14.7197L14.2197 4H9.78027L9.28027 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAiSlop;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,qtBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAiSlop","props","React","CentralIconBase","IconAiSlop_default"]}
package/README.md CHANGED
@@ -147,6 +147,7 @@ Below is a complete list of available icons:
147
147
 
148
148
  ### AI & Magic
149
149
 
150
+ - IconAiSlop
150
151
  - IconAiTokens
151
152
  - IconAiTranslate
152
153
  - IconAppleIntelligenceIcon
@@ -392,6 +392,20 @@
392
392
  "packageName": "round-filled-radius-0-stroke-2",
393
393
  "componentName": "IconAirpods"
394
394
  },
395
+ {
396
+ "category": "AI & Magic",
397
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 2C15.4589 2 15.8584 2.31265 15.9697 2.75781L16.7803 6H20C20.5523 6 21 6.44772 21 7C21 7.55228 20.5523 8 20 8V11.75C20 12.6736 19.6137 13.5061 18.9951 14.0977L18.4971 21.0713C18.4597 21.5945 18.0246 21.9999 17.5 22H6.5C5.97536 22 5.53934 21.5946 5.50195 21.0713L5.08008 15.165C4.41837 14.5701 4 13.7099 4 12.75V8C3.44772 8 3 7.55228 3 7C3 6.44772 3.44772 6 4 6H7.21973L8.03027 2.75781L8.08496 2.59668C8.24245 2.23893 8.59866 2 9 2H15ZM13 13.75C13 14.4404 13.5596 15 14.25 15C14.9404 15 15.5 14.4404 15.5 13.75V11.75C15.5 12.4404 16.0596 13 16.75 13C17.4404 13 18 12.4404 18 11.75V8H13V13.75ZM6 12.75C6 13.4404 6.55964 14 7.25 14C7.94036 14 8.5 13.4404 8.5 12.75V8H6V12.75ZM9.28027 6H14.7197L14.2197 4H9.78027L9.28027 6Z\" fill=\"currentColor\"/>",
398
+ "iconName": "ai-slop, trash",
399
+ "variant": {
400
+ "join": "round",
401
+ "filled": "on",
402
+ "radius": "0",
403
+ "stroke": "2"
404
+ },
405
+ "createdAt": "2026-04-22T19:01:56.661059+00:00",
406
+ "packageName": "round-filled-radius-0-stroke-2",
407
+ "componentName": "IconAiSlop"
408
+ },
395
409
  {
396
410
  "category": "AI & Magic",
397
411
  "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 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -27,6 +27,7 @@ export type CentralIconName =
27
27
  | "IconAirpodLeft"
28
28
  | "IconAirpodRight"
29
29
  | "IconAirpods"
30
+ | "IconAiSlop"
30
31
  | "IconAiTokens"
31
32
  | "IconAiTranslate"
32
33
  | "IconAlbums"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-0-stroke-2",
3
- "version": "1.1.204",
3
+ "version": "1.1.205",
4
4
  "style": "round-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-2/IconHome';",
@@ -11,11 +11,12 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1961,
14
+ "totalIcons": 1962,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 78,
17
+ "count": 79,
18
18
  "icons": [
19
+ "IconAiSlop",
19
20
  "IconAiTokens",
20
21
  "IconAiTranslate",
21
22
  "IconAppleIntelligenceIcon",
@@ -2191,6 +2192,7 @@
2191
2192
  "IconAirpodLeft": "airpod-left",
2192
2193
  "IconAirpodRight": "airpod-right",
2193
2194
  "IconAirpods": "airpods, headphones, vibe",
2195
+ "IconAiSlop": "ai-slop, trash",
2194
2196
  "IconAiTokens": "ai-tokens, credits",
2195
2197
  "IconAiTranslate": "ai-translate, language, auto-translate",
2196
2198
  "IconAlbums": "albums, cover",
package/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export { IconAffinity, default as IconAffinityDefault } from "./IconAffinity";
15
15
  export { IconAgent, default as IconAgentDefault } from "./IconAgent";
16
16
  export { IconAgentNetwork, default as IconAgentNetworkDefault, } from "./IconAgentNetwork";
17
17
  export { IconAgenticCoding, default as IconAgenticCodingDefault, } from "./IconAgenticCoding";
18
+ export { IconAiSlop, default as IconAiSlopDefault } from "./IconAiSlop";
18
19
  export { IconAiTokens, default as IconAiTokensDefault } from "./IconAiTokens";
19
20
  export { IconAiTranslate, default as IconAiTranslateDefault, } from "./IconAiTranslate";
20
21
  export { IconAirdrop, default as IconAirdropDefault } from "./IconAirdrop";