@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.88 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconBasketball/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBasketball: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"basketball, nba\">\n <path\n d=\"M11.25 2.02771C8.94438 2.19866 6.85634 3.15138 5.25 4.62175C7.0749 6.29217 8.27809 8.63068 8.4723 11.25H11.25V2.02771Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.96701 11.25C6.77571 9.06177 5.75526 7.11122 4.22165 5.71432C2.97923 7.2498 2.18227 9.16055 2.02734 11.25H6.96701Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2.02734 12.75H6.96701C6.77571 14.9382 5.75526 16.8888 4.22165 18.2857C2.97923 16.7502 2.18227 14.8394 2.02734 12.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.4723 12.75H11.25V21.9723C8.94438 21.8013 6.85634 20.8486 5.25 19.3783C7.07489 17.7078 8.27808 15.3693 8.4723 12.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.75 21.9723C15.0556 21.8013 17.1437 20.8486 18.75 19.3783C16.9251 17.7078 15.7219 15.3693 15.5277 12.75H12.75V21.9723Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.0312 12.75C17.2226 14.9382 18.243 16.8888 19.7766 18.2857C21.019 16.7502 21.816 14.8394 21.9709 12.75H17.0312Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.9709 11.25H17.0312C17.2226 9.06177 18.243 7.11122 19.7766 5.71432C21.019 7.2498 21.816 9.16055 21.9709 11.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.5277 11.25H12.75V2.02771C15.0556 2.19866 17.1437 3.15139 18.75 4.62175C16.9251 6.29217 15.7219 8.63068 15.5277 11.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBasketball;\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,mBACpCC,EAAA,cAAC,QACC,EAAE,yHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBasketball","props","React","CentralIconBase","IconBasketball_default"]}