UNPKG

@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.25 kB
{"version":3,"sources":["../src/IconArCube3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArCube3: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ar-cube-3\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 1.85822L15.5409 3.84999L14.8055 5.15735L12.75 4.00111V6.99998H11.25V4.00111L9.19446 5.15735L8.45907 3.84999L12 1.85822ZM7.45112 6.13798L5.2647 7.36784L7.83267 8.85046L7.08267 10.1495L4.5 8.65839L4.5 11H3L3 6.92072L6.71573 4.83062L7.45112 6.13798ZM17.2843 4.83062L21 6.92072V11H19.5V8.65839L16.9173 10.1495L16.1673 8.85046L18.7353 7.36784L16.5489 6.13798L17.2843 4.83062ZM21 13V17.0792L17.2843 19.1693L16.5489 17.862L18.7353 16.6321L16.1267 15.1261L16.8767 13.827L19.5 15.3416V13H21ZM4.5 13L4.5 15.3416L7.12327 13.827L7.87327 15.1261L5.2647 16.6321L7.45111 17.862L6.71572 19.1693L3 17.0792L3 13H4.5ZM12.75 16.9531V19.9988L14.8055 18.8426L15.5409 20.15L12 22.1417L8.45906 20.15L9.19445 18.8426L11.25 19.9988V16.9531H12.75Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.9731 11.1495L12.75 12.433V15H11.25V12.433L9.0269 11.1495L9.7769 9.85046L12 11.134L14.2231 9.85046L14.9731 11.1495Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArCube3;\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,aACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,utBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yHACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArCube3","props","React","CentralIconBase","IconArCube3_default"]}