@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.65 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTestflight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTestflight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"testflight, beta\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9.10614 1H14.8926L13.5002 9.63991C14.2574 10.1204 14.7688 10.9537 14.8036 11.9086L22.9763 15.0116L20.0834 20.0264L13.3033 14.4997C12.9138 14.7046 12.4703 14.8205 11.9997 14.8205C11.5257 14.8205 11.0793 14.703 10.6879 14.4954L3.91641 20.0273L1.02344 15.0125L9.19607 11.8993C9.23399 10.9449 9.74807 10.1129 10.5073 9.63475L9.10614 1ZM18.0958 4.11917L18.4756 4.44435C19.3134 5.1616 20.0452 6.03094 20.6268 7.03968C21.2085 8.04842 21.5945 9.11758 21.796 10.2025L21.8873 10.6941L20.9041 10.8767L20.8128 10.3851C20.6317 9.41011 20.2848 8.44832 19.7605 7.53921C19.2363 6.63011 18.578 5.8484 17.8253 5.20397L17.4455 4.87879L18.0958 4.11917ZM6.55381 4.8789L6.174 5.20409C5.42132 5.84852 4.76294 6.63022 4.23872 7.53932C3.71451 8.44843 3.36754 9.41022 3.18646 10.3852L3.09516 10.8768L2.11197 10.6942L2.20327 10.2026C2.40476 9.1177 2.79076 8.04853 3.37243 7.03979C3.9541 6.03105 4.6859 5.16172 5.52363 4.44447L5.90344 4.11928L6.55381 4.8789ZM11.9997 10.2051C11.0027 10.2051 10.1938 11.0141 10.1938 12.0128C10.1938 13.0116 11.0027 13.8205 11.9997 13.8205C12.9966 13.8205 13.8055 13.0116 13.8055 12.0128C13.8055 11.0141 12.9966 10.2051 11.9997 10.2051ZM8.54114 20.3228L9.0125 20.4896C9.94617 20.82 10.9514 21 11.9996 21C13.0479 21 14.0531 20.82 14.9868 20.4896L15.4581 20.3228L15.7918 21.2655L15.3204 21.4323C14.2811 21.8001 13.1631 22 11.9996 22C10.8361 22 9.71819 21.8001 8.67888 21.4323L8.20752 21.2655L8.54114 20.3228Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTestflight;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,q4CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTestflight","props","React","CentralIconBase","IconTestflight_default"]}