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 3 kB
{"version":3,"sources":["../src/IconCloudSimpleUpload/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCloudSimpleUpload: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cloud-simple-upload\">\n <path\n d=\"M8.85 4C4.50509 4 1 7.59129 1 12C1 15.5181 3.22972 18.512 6.33731 19.5813L6.81011 19.744L7.13548 18.7984L6.66269 18.6357C3.95661 17.7045 2 15.089 2 12C2 8.12444 5.07632 5 8.85 5C11.6707 5 14.1003 6.74365 15.1494 9.24546L15.329 9.67378L15.7694 9.5262C16.2348 9.37023 16.7323 9.28571 17.25 9.28571C19.8639 9.28571 22 11.4508 22 14.1429C22 16.7568 19.9854 18.8746 17.4761 18.9946L16.9767 19.0185L17.0245 20.0174L17.5239 19.9935C20.5814 19.8472 23 17.2752 23 14.1429C23 10.9176 20.4351 8.28571 17.25 8.28571C16.7809 8.28571 16.3244 8.34304 15.8872 8.45131C14.6061 5.8179 11.9398 4 8.85 4Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.5 14.7071V20.75H11.5V14.7071L9.49995 16.7071L8.79285 16L12 12.7929L15.2071 16L14.5 16.7071L12.5 14.7071Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudSimpleUpload;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,2kBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCloudSimpleUpload","props","React","CentralIconBase","IconCloudSimpleUpload_default"]}