@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.01 kB
Source Map (JSON)
{"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=\"M11.25 10C11.25 8.60212 12.2061 7.42755 13.5 7.09451V3H3V15.9393L7 11.9393L9 13.9393L11.5768 11.3626C11.368 10.9535 11.25 10.4901 11.25 10Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3 18.0608V21.0001H13.5V12.9055C13.1647 12.8191 12.852 12.6762 12.573 12.4878L9 16.0608L7 14.0608L3 18.0608Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15 21H21V3H15V7.09451C16.2939 7.42755 17.25 8.60212 17.25 10C17.25 11.3979 16.2939 12.5725 15 12.9055V21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.75 10C12.75 9.17157 13.4216 8.5 14.25 8.5C15.0784 8.5 15.75 9.17157 15.75 10C15.75 10.8284 15.0784 11.5 14.25 11.5C13.7935 11.5 13.3853 11.297 13.109 10.9738C12.8847 10.7114 12.75 10.3724 12.75 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,8IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconStocks","props","React","CentralIconBase","IconStocks_default"]}