@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.33 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTelescope/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTelescope: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"telescope, deep-search, research\">\n <path\n d=\"M5.87492 10.9956L1.9981 12.4067C1.47912 12.5955 1.21153 13.1694 1.40042 13.6884L2.16997 15.8027C2.35886 16.3217 2.9327 16.5892 3.45168 16.4003L7.32851 14.9893\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M11.2873 7.89258L6.91707 9.48323C6.1386 9.76657 5.73722 10.6273 6.02056 11.4058L7.17487 14.5773C7.45821 15.3557 8.31898 15.7571 9.09744 15.4738L13.4677 13.8831\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M12.8048 6.20977L19.5951 3.73828L22.5023 11.7257L15.712 14.1972C14.674 14.5749 13.5263 14.0398 13.1485 13.0018L11.6094 8.77319C11.2317 7.73523 11.7668 6.58755 12.8048 6.20977Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <path d=\"M10.75 20.25V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M7 20.25L14.5 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </CentralIconBase>\n );\n};\n\nexport default IconTelescope;\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,oCACpCC,EAAA,cAAC,QACC,EAAE,iKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,kLACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,MAAM,EACrEA,EAAA,cAAC,QAAK,EAAE,sBAAsB,OAAO,eAAe,YAAY,MAAM,CACxE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTelescope","props","React","CentralIconBase","IconTelescope_default"]}