@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.69 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconGamepadControlsRoundRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGamepadControlsRoundRight: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gamepad-controls-round-right\">\n <path\n d=\"M8.45703 5.24992C8.45703 3.15584 10.1546 1.45825 12.2487 1.45825C14.3428 1.45825 16.0404 3.15584 16.0404 5.24992C16.0404 7.344 14.3428 9.04158 12.2487 9.04158C10.1546 9.04158 8.45703 7.344 8.45703 5.24992Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M18.2487 8.20825C16.1546 8.20825 14.457 9.90584 14.457 11.9999C14.457 14.094 16.1546 15.7916 18.2487 15.7916C20.3428 15.7916 22.0404 14.094 22.0404 11.9999C22.0404 9.90584 20.3428 8.20825 18.2487 8.20825ZM15.5404 11.9999C15.5404 10.5041 16.7529 9.29159 18.2487 9.29159C19.7445 9.29159 20.957 10.5041 20.957 11.9999C20.957 13.4957 19.7445 14.7083 18.2487 14.7083C16.7529 14.7083 15.5404 13.4957 15.5404 11.9999Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.9987 14.4583C9.90462 14.4583 8.20703 16.1558 8.20703 18.2499C8.20703 20.344 9.90462 22.0416 11.9987 22.0416C14.0928 22.0416 15.7904 20.344 15.7904 18.2499C15.7904 16.1558 14.0928 14.4583 11.9987 14.4583Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.7487 8.20825C3.65462 8.20825 1.95703 9.90584 1.95703 11.9999C1.95703 14.094 3.65462 15.7916 5.7487 15.7916C7.84278 15.7916 9.54036 14.094 9.54036 11.9999C9.54036 9.90584 7.84278 8.20825 5.7487 8.20825Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamepadControlsRoundRight;\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,gCACpCC,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6ZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGamepadControlsRoundRight","props","React","CentralIconBase","IconGamepadControlsRoundRight_default"]}