@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 • 2.91 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCalculator/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCalculator: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"calculator\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 2H4V22H20V2ZM18.5 7V3.5H5.5V7H18.5ZM9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25C10.5 11.6977 10.0523 11.25 9.5 11.25C8.94772 11.25 8.5 11.6977 8.5 12.25C8.5 12.8023 8.94772 13.25 9.5 13.25ZM9.5 17.75C10.0523 17.75 10.5 17.3023 10.5 16.75C10.5 16.1977 10.0523 15.75 9.5 15.75C8.94772 15.75 8.5 16.1977 8.5 16.75C8.5 17.3023 8.94772 17.75 9.5 17.75ZM15.5 12.25C15.5 12.8023 15.0523 13.25 14.5 13.25C13.9477 13.25 13.5 12.8023 13.5 12.25C13.5 11.6977 13.9477 11.25 14.5 11.25C15.0523 11.25 15.5 11.6977 15.5 12.25ZM14.5 17.75C15.0523 17.75 15.5 17.3023 15.5 16.75C15.5 16.1977 15.0523 15.75 14.5 15.75C13.9477 15.75 13.5 16.1977 13.5 16.75C13.5 17.3023 13.9477 17.75 14.5 17.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCalculator;\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,cACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8qBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCalculator","props","React","CentralIconBase","IconCalculator_default"]}