@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.15 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFileCloud/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFileCloud: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"file-cloud, document\">\n <path\n d=\"M4 2H12.5V9.5H20V22H10.4495C11.0978 21.3647 11.5 20.4793 11.5 19.5C11.5 17.7446 10.2077 16.2911 8.52265 16.0388C7.74466 15.1005 6.56843 14.5 5.25 14.5C4.81497 14.5 4.39521 14.5654 4 14.6868V2Z\"\n fill=\"currentColor\"\n />\n <path d=\"M19.7071 8.5L13.5 2.29289V8.5H19.7071Z\" fill=\"currentColor\" />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2 18.75C2 20.5449 3.45507 22 5.25 22H8C9.38071 22 10.5 20.8807 10.5 19.5C10.5 18.1193 9.38071 17 8 17L7.9888 17C7.4116 16.0983 6.40146 15.5 5.25 15.5C3.45507 15.5 2 16.9551 2 18.75ZM8 18C7.91683 18 7.83524 18.0068 7.75575 18.0198C7.63529 18.0395 7.51966 18.0736 7.41067 18.1202C7.35973 17.9451 7.28809 17.7789 7.19859 17.6243C6.80946 16.9522 6.08253 16.5 5.25 16.5C4.00736 16.5 3 17.5074 3 18.75C3 19.9926 4.00736 21 5.25 21H8C8.82843 21 9.5 20.3284 9.5 19.5C9.5 18.6716 8.82843 18 8 18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileCloud;\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,wBACpCC,EAAA,cAAC,QACC,EAAE,mMACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,yCAAyC,KAAK,eAAe,EACrEA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2eACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFileCloud","props","React","CentralIconBase","IconFileCloud_default"]}