@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
1 lines • 3.06 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconImages4/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImages4: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"images-4, photos, pictures, shot\">\n <path\n d=\"M2.75 19L1.91303 18.4528L0.901367 20H2.75V19ZM7 12.5L7.58124 11.6863L6.73329 11.0806L6.16303 11.9528L7 12.5ZM10.5 15L9.91876 15.8137L10.7294 16.3928L11.3115 15.5843L10.5 15ZM15 8.75L15.8538 8.22939L15.0691 6.94255L14.1885 8.1657L15 8.75ZM21.25 19V20H23.031L22.1038 18.4794L21.25 19ZM3.58697 19.5472L7.83697 13.0472L6.16303 11.9528L1.91303 18.4528L3.58697 19.5472ZM6.41876 13.3137L9.91876 15.8137L11.0812 14.1863L7.58124 11.6863L6.41876 13.3137ZM11.3115 15.5843L15.8115 9.3343L14.1885 8.1657L9.68847 14.4157L11.3115 15.5843ZM14.1462 9.27061L20.3962 19.5206L22.1038 18.4794L15.8538 8.22939L14.1462 9.27061ZM2.75 20H21.25V18H2.75V20ZM10.5 6.5C10.5 7.32843 9.82843 8 9 8V10C10.933 10 12.5 8.433 12.5 6.5H10.5ZM9 8C8.17157 8 7.5 7.32843 7.5 6.5H5.5C5.5 8.433 7.067 10 9 10V8ZM7.5 6.5C7.5 5.67157 8.17157 5 9 5V3C7.067 3 5.5 4.567 5.5 6.5H7.5ZM9 5C9.82843 5 10.5 5.67157 10.5 6.5H12.5C12.5 4.567 10.933 3 9 3V5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImages4;\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,oCACpCC,EAAA,cAAC,QACC,EAAE,44BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconImages4","props","React","CentralIconBase","IconImages4_default"]}