@central-icons-react/square-outlined-radius-0-stroke-1 1.1.60 → 1.1.61

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 React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPropeller: React.FC<CentralIconBaseProps>;
4
+ export default IconPropeller;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var l=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,t)=>{for(var e in t)l(r,e,{get:t[e],enumerable:!0})},s=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of d(t))!x.call(r,o)&&o!==e&&l(r,o,{get:()=>t[o],enumerable:!(p=h(t,o))||p.enumerable});return r};var a=(r,t,e)=>(e=r!=null?f(g(r)):{},s(t||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>s(l({},"__esModule",{value:!0}),r);var P={};B(P,{IconPropeller:()=>i,default:()=>w});module.exports=I(P);var n=a(require("react"));var C=a(require("react")),m=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:c,...u})=>C.default.createElement("svg",{...u,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...c}},e&&!o&&C.default.createElement("title",null,e),r);var i=r=>n.default.createElement(m,{...r,ariaLabel:"propeller, flight, test, wind"},n.default.createElement("path",{d:"M14.9996 11.8074C14.9996 11.8074 18.0006 11.6645 19.5091 12.7084C23.9475 15.7802 15.0042 23.1263 13.4449 20.5967C12.6235 19.264 14.4807 17.0138 13.7229 15.0006",stroke:"currentColor"}),n.default.createElement("path",{d:"M10.6686 14.6928C10.6686 14.6928 9.29192 17.3632 7.63357 18.1476C2.75411 20.4555 0.863856 9.03732 3.8342 8.95172C5.39903 8.90673 6.41918 11.6403 8.54159 11.9905",stroke:"currentColor"}),n.default.createElement("path",{d:"M10.3357 9.5C10.3357 9.5 8.71149 6.97256 8.86133 5.14417C9.30241 -0.235485 20.1359 3.83658 18.7249 6.45177C17.9814 7.82944 15.1041 7.34615 13.7395 9.00908",stroke:"currentColor"}),n.default.createElement("path",{d:"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",stroke:"currentColor"})),w=i;0&&(module.exports={IconPropeller});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPropeller/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPropeller: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"propeller, flight, test, wind\">\n <path\n d=\"M14.9996 11.8074C14.9996 11.8074 18.0006 11.6645 19.5091 12.7084C23.9475 15.7802 15.0042 23.1263 13.4449 20.5967C12.6235 19.264 14.4807 17.0138 13.7229 15.0006\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M10.6686 14.6928C10.6686 14.6928 9.29192 17.3632 7.63357 18.1476C2.75411 20.4555 0.863856 9.03732 3.8342 8.95172C5.39903 8.90673 6.41918 11.6403 8.54159 11.9905\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M10.3357 9.5C10.3357 9.5 8.71149 6.97256 8.86133 5.14417C9.30241 -0.235485 20.1359 3.83658 18.7249 6.45177C17.9814 7.82944 15.1041 7.34615 13.7395 9.00908\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPropeller;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6JACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconPropeller_exports","__export","IconPropeller","IconPropeller_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPropeller","props","React","CentralIconBase","IconPropeller_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";var l=({children:e,size:r=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:s,...a})=>p.createElement("svg",{...a,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...s}},n&&!o&&p.createElement("title",null,n),e);var m=e=>t.createElement(l,{...e,ariaLabel:"propeller, flight, test, wind"},t.createElement("path",{d:"M14.9996 11.8074C14.9996 11.8074 18.0006 11.6645 19.5091 12.7084C23.9475 15.7802 15.0042 23.1263 13.4449 20.5967C12.6235 19.264 14.4807 17.0138 13.7229 15.0006",stroke:"currentColor"}),t.createElement("path",{d:"M10.6686 14.6928C10.6686 14.6928 9.29192 17.3632 7.63357 18.1476C2.75411 20.4555 0.863856 9.03732 3.8342 8.95172C5.39903 8.90673 6.41918 11.6403 8.54159 11.9905",stroke:"currentColor"}),t.createElement("path",{d:"M10.3357 9.5C10.3357 9.5 8.71149 6.97256 8.86133 5.14417C9.30241 -0.235485 20.1359 3.83658 18.7249 6.45177C17.9814 7.82944 15.1041 7.34615 13.7395 9.00908",stroke:"currentColor"}),t.createElement("path",{d:"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",stroke:"currentColor"})),h=m;export{m as IconPropeller,h as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPropeller/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPropeller: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"propeller, flight, test, wind\">\n <path\n d=\"M14.9996 11.8074C14.9996 11.8074 18.0006 11.6645 19.5091 12.7084C23.9475 15.7802 15.0042 23.1263 13.4449 20.5967C12.6235 19.264 14.4807 17.0138 13.7229 15.0006\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M10.6686 14.6928C10.6686 14.6928 9.29192 17.3632 7.63357 18.1476C2.75411 20.4555 0.863856 9.03732 3.8342 8.95172C5.39903 8.90673 6.41918 11.6403 8.54159 11.9905\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M10.3357 9.5C10.3357 9.5 8.71149 6.97256 8.86133 5.14417C9.30241 -0.235485 20.1359 3.83658 18.7249 6.45177C17.9814 7.82944 15.1041 7.34615 13.7395 9.00908\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPropeller;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iCACpCC,EAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,6JACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPropeller","props","React","CentralIconBase","IconPropeller_default"]}
package/README.md CHANGED
@@ -1710,6 +1710,7 @@ Below is a complete list of available icons:
1710
1710
  - IconPlugin2
1711
1711
  - IconPokeball
1712
1712
  - IconPoop
1713
+ - IconPropeller
1713
1714
  - IconPushTheButton
1714
1715
  - IconPuzzle
1715
1716
  - IconReadingList
package/icons/index.d.ts CHANGED
@@ -1178,6 +1178,7 @@ export type CentralIconName =
1178
1178
  | "IconPromptSuggestion"
1179
1179
  | "IconPromptTextToImage"
1180
1180
  | "IconPromptTextToVideo"
1181
+ | "IconPropeller"
1181
1182
  | "IconPullRequest"
1182
1183
  | "IconPumpjack"
1183
1184
  | "IconPush"