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.04 kB
{"version":3,"sources":["../src/IconSuperscript/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSuperscript: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"superscript\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.0078 4.5C18.1399 4.5 17.5863 5.11786 17.5151 5.95613L16.0204 5.82919C16.1442 4.37144 17.2126 3 19.0078 3C20.6245 3 22.002 4.1694 22.002 5.9459C22.002 6.82844 21.5915 7.49527 21.0771 8.00563C20.5958 8.48326 19.974 8.87137 19.4385 9.20555L19.3992 9.23011C18.8188 9.59245 18.3346 9.89937 17.9842 10.2481C17.899 10.3329 17.8256 10.4165 17.7636 10.5H22.002V12H16.002V11.25C16.002 10.3659 16.4114 9.69732 16.926 9.18507C17.4093 8.70395 18.034 8.31403 18.5712 7.9787L18.6048 7.95773C19.1857 7.59507 19.67 7.28877 20.0206 6.94089C20.35 6.61399 20.502 6.30799 20.502 5.9459C20.502 5.07601 19.8764 4.5 19.0078 4.5ZM2.84387 4.69333L8.00199 10.8339L13.1601 4.69333L14.3087 5.65812L8.98147 12L14.3087 18.3419L13.1601 19.3067L8.00199 13.1661L2.84387 19.3067L1.69531 18.3419L7.0225 12L1.69531 5.65812L2.84387 4.69333Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSuperscript;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,eACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yyBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSuperscript","props","React","CentralIconBase","IconSuperscript_default"]}