@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.04 kB
Source Map (JSON)
{"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.008 4C17.8209 4 17.1057 4.8285 17.0171 5.82957L16.021 5.74145C16.1491 4.29342 17.2361 3 19.008 3C20.6182 3 22.0015 4.11024 22.0015 5.84229C22.0015 6.68715 21.5956 7.32821 21.0652 7.8335C20.5569 8.31767 19.8934 8.71526 19.2891 9.07742L19.2586 9.09572C18.6214 9.47764 18.0487 9.82398 17.6282 10.2258C17.3694 10.4732 17.1863 10.7246 17.0873 11H22.0015V12H16.0015V11.5C16.0015 10.6531 16.4067 10.01 16.9373 9.5029C17.4477 9.01515 18.1144 8.6156 18.7209 8.2521L18.7445 8.23798C19.3821 7.85586 19.9547 7.5102 20.3754 7.10945C20.7825 6.72166 21.0015 6.32504 21.0015 5.84229C21.0015 4.75153 20.1593 4 19.008 4ZM2.56026 4.79534L8.00154 11.2259L13.4428 4.79534L14.2062 5.44128L8.65652 12L14.2062 18.5587L13.4428 19.2047L8.00154 12.7741L2.56026 19.2047L1.79688 18.5587L7.34656 12L1.79688 5.44128L2.56026 4.79534Z\"\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,wyBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSuperscript","props","React","CentralIconBase","IconSuperscript_default"]}