@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.1 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSubscript/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscript: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscript\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2.56026 4.79541L8.00154 11.226L13.4428 4.79541L14.2062 5.44135L8.65652 12.0001L14.2062 18.5588L13.4428 19.2047L8.00154 12.7741L2.56026 19.2047L1.79688 18.5588L7.34656 12.0001L1.79688 5.44135L2.56026 4.79541ZM19.008 13.0001C17.8209 13.0001 17.1057 13.8286 17.0171 14.8296L16.021 14.7415C16.1491 13.2935 17.2361 12.0001 19.008 12.0001C20.6182 12.0001 22.0015 13.1103 22.0015 14.8424C22.0015 15.6872 21.5956 16.3283 21.0652 16.8336C20.5569 17.3177 19.8934 17.7153 19.2891 18.0775L19.2586 18.0958C18.6214 18.4777 18.0487 18.8241 17.6282 19.2259C17.3694 19.4733 17.1863 19.7247 17.0873 20.0001H22.0015V21.0001H16.0015V20.5001C16.0015 19.6532 16.4067 19.0101 16.9373 18.503C17.4477 18.0152 18.1144 17.6157 18.7209 17.2522L18.7445 17.2381C19.3821 16.8559 19.9547 16.5103 20.3754 16.1095C20.7825 15.7217 21.0015 15.3251 21.0015 14.8424C21.0015 13.7516 20.1593 13.0001 19.008 13.0001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSubscript;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,aACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+2BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSubscript","props","React","CentralIconBase","IconSubscript_default"]}