@central-icons-react/square-filled-radius-0-stroke-1.5 1.1.54 → 1.1.55

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 IconSearchOptions: React.FC<CentralIconBaseProps>;
4
+ export default IconSearchOptions;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0})},a=(e,r,o,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of h(r))!g.call(e,t)&&t!==o&&p(e,t,{get:()=>r[t],enumerable:!(l=d(r,t))||l.enumerable});return e};var s=(e,r,o)=>(o=e!=null?u(L(e)):{},a(r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e)),B=e=>a(p({},"__esModule",{value:!0}),e);var v={};x(v,{IconSearchOptions:()=>c,default:()=>I});module.exports=B(v);var n=s(require("react"));var C=s(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:m,...f})=>C.default.createElement("svg",{...f,"aria-hidden":t,role:t?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:l,...m}},o&&!t&&C.default.createElement("title",null,o),e);var c=e=>n.default.createElement(i,{...e,ariaLabel:"search-options, settings"},n.default.createElement("path",{d:"M7.5 7.5C9.433 7.5 11 9.067 11 11C11 12.933 9.433 14.5 7.5 14.5C5.567 14.5 4 12.933 4 11C4 9.067 5.567 7.5 7.5 7.5Z",fill:"currentColor"}),n.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 4.75C10.9518 4.75 13.75 7.54822 13.75 11C13.75 12.4555 13.2503 13.7932 12.416 14.8555L16.0605 18.5L15 19.5605L11.3555 15.916C10.2932 16.7503 8.95553 17.25 7.5 17.25C4.04822 17.25 1.25 14.4518 1.25 11C1.25 7.54822 4.04822 4.75 7.5 4.75ZM7.5 6.25C4.87665 6.25 2.75 8.37665 2.75 11C2.75 13.6234 4.87665 15.75 7.5 15.75C10.1234 15.75 12.25 13.6234 12.25 11C12.25 8.37665 10.1234 6.25 7.5 6.25Z",fill:"currentColor"}),n.default.createElement("path",{d:"M23.0605 10L19.5 13.5605L15.9395 10L17 8.93945L19.5 11.4395L22 8.93945L23.0605 10Z",fill:"currentColor"})),I=c;0&&(module.exports={IconSearchOptions});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSearchOptions/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSearchOptions: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"search-options, settings\">\n <path\n d=\"M7.5 7.5C9.433 7.5 11 9.067 11 11C11 12.933 9.433 14.5 7.5 14.5C5.567 14.5 4 12.933 4 11C4 9.067 5.567 7.5 7.5 7.5Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7.5 4.75C10.9518 4.75 13.75 7.54822 13.75 11C13.75 12.4555 13.2503 13.7932 12.416 14.8555L16.0605 18.5L15 19.5605L11.3555 15.916C10.2932 16.7503 8.95553 17.25 7.5 17.25C4.04822 17.25 1.25 14.4518 1.25 11C1.25 7.54822 4.04822 4.75 7.5 4.75ZM7.5 6.25C4.87665 6.25 2.75 8.37665 2.75 11C2.75 13.6234 4.87665 15.75 7.5 15.75C10.1234 15.75 12.25 13.6234 12.25 11C12.25 8.37665 10.1234 6.25 7.5 6.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M23.0605 10L19.5 13.5605L15.9395 10L17 8.93945L19.5 11.4395L22 8.93945L23.0605 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSearchOptions;\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,uBAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6YACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSearchOptions_exports","__export","IconSearchOptions","IconSearchOptions_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconSearchOptions","props","React","CentralIconBase","IconSearchOptions_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import l from"react";var p=({children:o,size:e=24,ariaLabel:n,color:C,ariaHidden:t=!0,style:a,...s})=>l.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},n&&!t&&l.createElement("title",null,n),o);var i=o=>r.createElement(p,{...o,ariaLabel:"search-options, settings"},r.createElement("path",{d:"M7.5 7.5C9.433 7.5 11 9.067 11 11C11 12.933 9.433 14.5 7.5 14.5C5.567 14.5 4 12.933 4 11C4 9.067 5.567 7.5 7.5 7.5Z",fill:"currentColor"}),r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 4.75C10.9518 4.75 13.75 7.54822 13.75 11C13.75 12.4555 13.2503 13.7932 12.416 14.8555L16.0605 18.5L15 19.5605L11.3555 15.916C10.2932 16.7503 8.95553 17.25 7.5 17.25C4.04822 17.25 1.25 14.4518 1.25 11C1.25 7.54822 4.04822 4.75 7.5 4.75ZM7.5 6.25C4.87665 6.25 2.75 8.37665 2.75 11C2.75 13.6234 4.87665 15.75 7.5 15.75C10.1234 15.75 12.25 13.6234 12.25 11C12.25 8.37665 10.1234 6.25 7.5 6.25Z",fill:"currentColor"}),r.createElement("path",{d:"M23.0605 10L19.5 13.5605L15.9395 10L17 8.93945L19.5 11.4395L22 8.93945L23.0605 10Z",fill:"currentColor"})),d=i;export{i as IconSearchOptions,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSearchOptions/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSearchOptions: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"search-options, settings\">\n <path\n d=\"M7.5 7.5C9.433 7.5 11 9.067 11 11C11 12.933 9.433 14.5 7.5 14.5C5.567 14.5 4 12.933 4 11C4 9.067 5.567 7.5 7.5 7.5Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7.5 4.75C10.9518 4.75 13.75 7.54822 13.75 11C13.75 12.4555 13.2503 13.7932 12.416 14.8555L16.0605 18.5L15 19.5605L11.3555 15.916C10.2932 16.7503 8.95553 17.25 7.5 17.25C4.04822 17.25 1.25 14.4518 1.25 11C1.25 7.54822 4.04822 4.75 7.5 4.75ZM7.5 6.25C4.87665 6.25 2.75 8.37665 2.75 11C2.75 13.6234 4.87665 15.75 7.5 15.75C10.1234 15.75 12.25 13.6234 12.25 11C12.25 8.37665 10.1234 6.25 7.5 6.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M23.0605 10L19.5 13.5605L15.9395 10L17 8.93945L19.5 11.4395L22 8.93945L23.0605 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSearchOptions;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSearchOptions","props","React","CentralIconBase","IconSearchOptions_default"]}
package/README.md CHANGED
@@ -1036,6 +1036,7 @@ Below is a complete list of available icons:
1036
1036
  - IconQuickSearch
1037
1037
  - IconReview
1038
1038
  - IconSearchMenu
1039
+ - IconSearchOptions
1039
1040
  - IconShapesPlusXSquareCircle
1040
1041
  - IconShareAndroid
1041
1042
  - IconShareOs
package/icons/index.d.ts CHANGED
@@ -1253,6 +1253,7 @@ export type CentralIconName =
1253
1253
  | "IconSearchIntelligence"
1254
1254
  | "IconSearchlinesSparkle"
1255
1255
  | "IconSearchMenu"
1256
+ | "IconSearchOptions"
1256
1257
  | "IconSecretPhrase"
1257
1258
  | "IconSend"
1258
1259
  | "IconServer"