UNPKG

@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 2.96 kB
{"version":3,"sources":["../src/IconCloudySun/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCloudySun: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cloudy-sun, clouds\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16 1V3H15V1H16ZM21.8646 3.84314L20.4504 5.25735L19.7432 4.55025L21.1575 3.13603L21.8646 3.84314ZM9.84315 3.13604L11.2574 4.55025L10.5503 5.25736L9.13604 3.84315L9.84315 3.13604ZM11.1022 8.54198C10.3051 8.19335 9.42465 8 8.5 8C4.91015 8 2 10.9101 2 14.5V15C2 18.866 5.13401 22 9 22H16.5C19.5376 22 22 19.5376 22 16.5C22 14.5117 20.9449 12.7706 19.3657 11.8047C19.7684 11.1305 20 10.3419 20 9.5C20 7.01472 17.9853 5 15.5 5C13.3435 5 11.5414 6.5168 11.1022 8.54198ZM12.0298 9.04107C12.9648 9.64684 13.7344 10.4863 14.2558 11.4773C14.9415 11.1705 15.7013 11 16.5 11C17.1915 11 17.854 11.1278 18.4646 11.3614C18.8039 10.8223 19 10.1846 19 9.5C19 7.567 17.433 6 15.5 6C13.7226 6 12.2544 7.32513 12.0298 9.04107ZM22 9H24V10H22V9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudySun;\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,sBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,stBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCloudySun","props","React","CentralIconBase","IconCloudySun_default"]}