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.52 kB
{"version":3,"sources":["../src/IconFileJpg/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFileJpg: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"file-jpg, image, jpeg\">\n <path d=\"M13 3H4V12H20V10H13V3Z\" fill=\"currentColor\" />\n <path d=\"M20 9V8.79967L14.464 3H14V9H20Z\" fill=\"currentColor\" />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.5 14H11C12.176 14 13 15.0956 13 16.25C13 17.4044 12.176 18.5 11 18.5H9.5V21H8.5V14ZM9.5 17.5H11C11.4809 17.5 12 17.0066 12 16.25C12 15.4934 11.4809 15 11 15H9.5V17.5Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7 14V19C7 20.1046 6.10457 21 5 21H3.5V20H5C5.55228 20 6 19.5523 6 19V14H7Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17.2308 15C16.1626 15 15.2109 15.9036 15.2109 17.4701C15.2109 19.0406 16.1398 19.9983 17.3184 19.9999C17.9625 19.9917 18.6053 19.8514 19 19.5355V18.0247H17.5745V17.0247H20V19.9467L19.8677 20.0903C19.2029 20.8119 18.1135 20.9904 17.3274 20.9999L17.3213 21C15.4563 21 14.2109 19.4513 14.2109 17.4701C14.2109 15.4836 15.4868 14 17.2308 14C18.2421 14 19.2221 14.3272 19.9834 15.1857L19.2352 15.8492C18.6983 15.2437 18.0127 15 17.2308 15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileJpg;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDA,EAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,EAC9DA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qbACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFileJpg","props","React","CentralIconBase","IconFileJpg_default"]}