@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.04 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPageTextSearch/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageTextSearch: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"page-text-search\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4 22V2H20V12.626C19.0149 11.9174 17.8062 11.5 16.5 11.5C13.1863 11.5 10.5 14.1863 10.5 17.5C10.5 19.292 11.2856 20.9006 12.5313 22H4ZM7 5H15V6.5H7V5ZM7 9H12V10.5H7V9Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.5 13C14.0147 13 12 15.0147 12 17.5C12 19.9853 14.0147 22 16.5 22C17.4786 22 18.3849 21.687 19.1232 21.1567L20.4832 22.5605L21.5605 21.5168L20.1794 20.0912C20.696 19.3587 21 18.4644 21 17.5C21 15.0147 18.9853 13 16.5 13ZM13.5 17.5C13.5 15.8431 14.8431 14.5 16.5 14.5C18.1569 14.5 19.5 15.8431 19.5 17.5C19.5 18.32 19.172 19.0618 18.6384 19.6041C18.0934 20.158 17.3373 20.5 16.5 20.5C14.8431 20.5 13.5 19.1569 13.5 17.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageTextSearch;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,0KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yaACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPageTextSearch","props","React","CentralIconBase","IconPageTextSearch_default"]}