@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.75 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSun/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSun: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"sun, light-mode, day, today\">\n <path\n d=\"M12.7482 1.01758H11.2482V4.04083H12.7482V1.01758Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.70209 19.2357L4.76275 20.2964L6.90051 18.1586L5.83985 17.098L3.70209 19.2357Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7482 19.9594V22.9827H11.2482V19.9594H12.7482Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.0956 5.84179L18.1562 6.90245L20.294 4.76468L19.2334 3.70402L17.0956 5.84179Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.957 11.2501H22.9803V12.7501H19.957V11.2501Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.1562 17.0979L17.0956 18.1586L19.2334 20.2963L20.294 19.2357L18.1562 17.0979Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1.01562 11.2501H4.03888V12.7501H1.01562V11.2501Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.76267 3.70396L3.70201 4.76462L5.83977 6.90239L6.90043 5.84173L4.76267 3.70396Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.7554 7.75736C10.0985 5.41421 13.8975 5.41421 16.2407 7.75736C18.5838 10.1005 18.5838 13.8995 16.2407 16.2426C13.8975 18.5858 10.0985 18.5858 7.7554 16.2426C5.41226 13.8995 5.41226 10.1005 7.7554 7.75736Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSun;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSun","props","React","CentralIconBase","IconSun_default"]}