UNPKG

@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
{"version":3,"sources":["../src/IconGamepadControlsRoundDown/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGamepadControlsRoundDown: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gamepad-controls-round-down\">\n <path\n d=\"M8.20703 5.75004C8.20703 3.65596 9.90462 1.95837 11.9987 1.95837C14.0928 1.95837 15.7904 3.65596 15.7904 5.75004C15.7904 7.84412 14.0928 9.54171 11.9987 9.54171C9.90462 9.54171 8.20703 7.84412 8.20703 5.75004Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1.95703 12C1.95703 9.90596 3.65462 8.20837 5.7487 8.20837C7.84278 8.20837 9.54036 9.90596 9.54036 12C9.54036 14.0941 7.84278 15.7917 5.7487 15.7917C3.65462 15.7917 1.95703 14.0941 1.95703 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.457 12C14.457 9.90596 16.1546 8.20837 18.2487 8.20837C20.3428 8.20837 22.0404 9.90596 22.0404 12C22.0404 14.0941 20.3428 15.7917 18.2487 15.7917C16.1546 15.7917 14.457 14.0941 14.457 12Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9987 14.4584C9.90462 14.4584 8.20703 16.156 8.20703 18.25C8.20703 20.3441 9.90462 22.0417 11.9987 22.0417C14.0928 22.0417 15.7904 20.3441 15.7904 18.25C15.7904 16.156 14.0928 14.4584 11.9987 14.4584ZM9.29036 18.25C9.29036 16.7543 10.5029 15.5417 11.9987 15.5417C13.4945 15.5417 14.707 16.7543 14.707 18.25C14.707 19.7458 13.4945 20.9584 11.9987 20.9584C10.5029 20.9584 9.29036 19.7458 9.29036 18.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamepadControlsRoundDown;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,sZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGamepadControlsRoundDown","props","React","CentralIconBase","IconGamepadControlsRoundDown_default"]}