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.29 kB
{"version":3,"sources":["../src/IconFilePdf/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFilePdf: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"file-pdf, document\">\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=\"M3 14H5.75C6.80721 14 8 14.8503 8 16.25C8 17.6497 6.80721 18.5 5.75 18.5H4V21H3V14ZM4 15V17.5H5.75C6.34964 17.5 7 17.0072 7 16.25C7 15.4928 6.34964 15 5.75 15H4Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9 14H11.25C11.8675 14 12.7297 14.168 13.4516 14.6966C14.1986 15.2435 14.75 16.1453 14.75 17.5C14.75 18.8547 14.1986 19.7565 13.4516 20.3034C12.7297 20.832 11.8675 21 11.25 21H9V14ZM10 20H11.25C11.7159 20 12.3536 19.868 12.8609 19.4966C13.3431 19.1435 13.75 18.5453 13.75 17.5C13.75 16.4547 13.3431 15.8565 12.8609 15.5034C12.3536 15.132 11.7159 15 11.25 15H10V20Z\"\n fill=\"currentColor\"\n />\n <path d=\"M21 14H16V21H17V18H20V17H17V15H21V14Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFilePdf;\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,sBACpCC,EAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDA,EAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,EAC9DA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+WACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,wCAAwC,KAAK,eAAe,CACtE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFilePdf","props","React","CentralIconBase","IconFilePdf_default"]}