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 2.98 kB
{"version":3,"sources":["../src/IconStocks/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconStocks: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"stocks\">\n <path\n d=\"M14 3H3V14.7929L6.5 11.2929L9.5 14.2929L12.0547 11.7382C11.7057 11.2479 11.5 10.6477 11.5 10C11.5 8.5135 12.5811 7.27952 14 7.04148V3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3 16.2071V21H14V12.9585C13.5442 12.8819 13.1231 12.7026 12.7618 12.4453L9.5 15.7071L6.5 12.7071L3 16.2071Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15 21H21V3H15V7.04148C16.4189 7.27952 17.5 8.5135 17.5 10C17.5 11.4865 16.4189 12.7205 15 12.9585V21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.5 10C12.5 8.89543 13.3954 8 14.5 8C15.6046 8 16.5 8.89543 16.5 10C16.5 11.1046 15.6046 12 14.5 12C13.9476 12 13.4483 11.7767 13.0858 11.4142C12.7233 11.0517 12.5 10.5524 12.5 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStocks;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconStocks","props","React","CentralIconBase","IconStocks_default"]}