@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.67 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconGamepadControlsRoundUp/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGamepadControlsRoundUp: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gamepad-controls-round-up\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9987 1.95825C9.90462 1.95825 8.20703 3.65584 8.20703 5.74992C8.20703 7.844 9.90462 9.54158 11.9987 9.54158C14.0928 9.54159 15.7904 7.844 15.7904 5.74992C15.7904 3.65584 14.0928 1.95825 11.9987 1.95825ZM9.29036 5.74992C9.29036 4.25415 10.5029 3.04159 11.9987 3.04159C13.4945 3.04159 14.707 4.25415 14.707 5.74992C14.707 7.24569 13.4945 8.45825 11.9987 8.45825C10.5029 8.45825 9.29036 7.24569 9.29036 5.74992Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1.95703 11.9999C1.95703 9.90584 3.65462 8.20825 5.7487 8.20825C7.84278 8.20825 9.54036 9.90584 9.54036 11.9999C9.54036 14.094 7.84278 15.7916 5.7487 15.7916C3.65462 15.7916 1.95703 14.094 1.95703 11.9999Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.457 11.9999C14.457 9.90584 16.1546 8.20825 18.2487 8.20825C20.3428 8.20825 22.0404 9.90584 22.0404 11.9999C22.0404 14.094 20.3428 15.7916 18.2487 15.7916C16.1546 15.7916 14.457 14.094 14.457 11.9999Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.20703 18.2499C8.20703 16.1558 9.90462 14.4583 11.9987 14.4583C14.0928 14.4583 15.7904 16.1558 15.7904 18.2499C15.7904 20.344 14.0928 22.0416 11.9987 22.0416C9.90462 22.0416 8.20703 20.344 8.20703 18.2499Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamepadControlsRoundUp;\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,6BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8ZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGamepadControlsRoundUp","props","React","CentralIconBase","IconGamepadControlsRoundUp_default"]}