UNPKG

@central-icons-react/square-outlined-radius-0-stroke-1.5

Version:

A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 3.05 kB
{"version":3,"sources":["../src/IconBrain1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBrain1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"brain-1, ai, thinking, database, ki\">\n <path\n d=\"M8.75 13.75C10.5449 13.75 12 15.2051 12 17M15.25 10.25C13.4551 10.25 12 8.79493 12 7M12 3.65628L12 20.1132M19.0167 17.8991C20.3271 17.3617 21.25 16.0734 21.25 14.5694C21.25 13.5629 20.8366 12.6529 20.1703 12C20.8366 11.3471 21.25 10.4371 21.25 9.43056C21.25 7.57553 19.8459 6.04846 18.0425 5.8542C17.5934 4.07047 15.9787 2.75 14.0556 2.75C13.3067 2.75 12.6047 2.9502 12 3.29999C11.3953 2.9502 10.6933 2.75 9.94444 2.75C8.02133 2.75 6.40662 4.07047 5.95754 5.8542C4.15413 6.04846 2.75 7.57553 2.75 9.43056C2.75 10.4371 3.16341 11.3471 3.82969 12C3.16341 12.6529 2.75 13.5629 2.75 14.5694C2.75 16.0734 3.67291 17.3617 4.98327 17.8991C5.5365 19.8338 7.31815 21.25 9.43056 21.25C10.3813 21.25 11.2651 20.9631 12 20.4712C12.7349 20.9631 13.6187 21.25 14.5694 21.25C16.6819 21.25 18.4635 19.8338 19.0167 17.8991Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBrain1;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,yyBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBrain1","props","React","CentralIconBase","IconBrain1_default"]}