UNPKG

@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.9 kB
{"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.2496 2.02771C8.94402 2.19866 6.85598 3.15138 5.24964 4.62175C7.07454 6.29217 8.27773 8.63068 8.47194 11.25H11.2496V2.02771Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.96701 11.25C6.77571 9.06178 5.75526 7.11124 4.22165 5.71434C2.97923 7.24982 2.18227 9.16057 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.47194 12.75H11.2496V21.9723C8.94402 21.8014 6.85598 20.8486 5.24964 19.3783C7.07454 17.7078 8.27773 15.3693 8.47194 12.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7496 21.9723C15.0553 21.8014 17.1433 20.8486 18.7496 19.3783C16.9247 17.7078 15.7216 15.3693 15.5273 12.75H12.7496V21.9723Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.0323 12.75C17.2236 14.9382 18.244 16.8888 19.7776 18.2857C21.0201 16.7502 21.817 14.8394 21.9719 12.75H17.0323Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.9719 11.25H17.0323C17.2236 9.06179 18.244 7.11124 19.7776 5.71435C21.0201 7.24982 21.817 9.16057 21.9719 11.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.5273 11.25H12.7496V2.02771C15.0553 2.19866 17.1433 3.15139 18.7496 4.62175C16.9247 6.29217 15.7216 8.63068 15.5273 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,kIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBasketball","props","React","CentralIconBase","IconBasketball_default"]}