@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.58 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 d=\"M12.4999 1H11.4999V4H12.4999V1Z\" fill=\"currentColor\" />\n <path d=\"M23 12.5V11.5H20V12.5H23Z\" fill=\"currentColor\" />\n <path\n d=\"M19.4246 20.1317L17.3033 18.0104L18.0104 17.3033L20.1317 19.4246L19.4246 20.1317Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.1317 4.57538L19.4246 3.86827L17.3033 5.98959L18.0104 6.6967L20.1317 4.57538Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.4999 20V23H11.4999V20H12.4999Z\" fill=\"currentColor\" />\n <path d=\"M4 12.5V11.5H1V12.5H4Z\" fill=\"currentColor\" />\n <path\n d=\"M5.98926 6.6967L3.86794 4.57538L4.57504 3.86827L6.69636 5.98959L5.98926 6.6967Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.69636 18.0104L5.98926 17.3033L3.86794 19.4246L4.57504 20.1317L6.69636 18.0104Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.2426 7.75736C13.8995 5.41421 10.1005 5.41421 7.75736 7.75736C5.41421 10.1005 5.41421 13.8995 7.75736 16.2426C10.1005 18.5858 13.8995 18.5858 16.2426 16.2426C18.5858 13.8995 18.5858 10.1005 16.2426 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,QAAK,EAAE,kCAAkC,KAAK,eAAe,EAC9DA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEA,EAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSun","props","React","CentralIconBase","IconSun_default"]}