@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.12 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFileLink/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFileLink: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"file-link, hyperlink\">\n <path\n d=\"M4.75 2H12V10H20V21.25C20 21.6642 19.6642 22 19.25 22H9.77494C10.8371 20.9972 11.5 19.576 11.5 18V15C11.5 11.9624 9.03757 9.5 6 9.5C5.29442 9.5 4.61986 9.63286 4 9.87494V2.75C4 2.33579 4.33579 2 4.75 2Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13.5 2.43934L19.5607 8.5H13.5V2.43934Z\" fill=\"currentColor\" />\n <path\n d=\"M6 12.5C4.61929 12.5 3.5 13.6193 3.5 15V15.75H2V15C2 12.7909 3.79086 11 6 11C8.20914 11 10 12.7909 10 15V15.75H8.5V15C8.5 13.6193 7.38071 12.5 6 12.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.5 17.25V18C3.5 19.3807 4.61929 20.5 6 20.5C7.38071 20.5 8.5 19.3807 8.5 18V17.25H10V18C10 20.2091 8.20914 22 6 22C3.79086 22 2 20.2091 2 18V17.25H3.5Z\"\n fill=\"currentColor\"\n />\n <path d=\"M6.75 18V15H5.25V18H6.75Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFileLink;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,EACtEA,EAAA,cAAC,QACC,EAAE,yJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4JACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFileLink","props","React","CentralIconBase","IconFileLink_default"]}