@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.54 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconServer1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconServer1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"server-1, storage, data, coins, money\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.16 3.75C19.62 4.13 20 4.66 20 5.32V10.69C20 10.95 19.88 11.27 19.53 11.62C19.17 11.98 18.63 12.33 17.89 12.65C16.42 13.28 14.34 13.69 12 13.69C9.66 13.69 7.58 13.28 6.11 12.65C5.37 12.33 4.82 11.98 4.47 11.62C4.12 11.27 4 10.95 4 10.69V5.32C4 4.66 4.38 4.13 4.84 3.75C5.3 3.36 5.92 3.05 6.62 2.8C8.03 2.3 9.93 2 12 2C14.07 2 15.97 2.3 17.38 2.8C18.08 3.05 18.7 3.36 19.16 3.75ZM7.12 4.22C6.51 4.43 6.07 4.67 5.8 4.9C5.52 5.14 5.5 5.28 5.5 5.33C5.5 5.38 5.52 5.53 5.8 5.76C6.07 5.98 6.51 6.22 7.12 6.44C8.34 6.87 10.06 7.15 12 7.15C13.94 7.15 15.67 6.87 16.88 6.44C17.49 6.23 17.93 5.99 18.2 5.76C18.48 5.52 18.5 5.38 18.5 5.33C18.5 5.28 18.48 5.13 18.2 4.9C17.93 4.68 17.49 4.44 16.88 4.22C15.66 3.79 13.94 3.51 12 3.51C10.06 3.51 8.33 3.79 7.12 4.22Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.52 14.0304C7.21 14.7604 9.51 15.1904 12 15.1904C14.49 15.1904 16.78 14.7604 18.48 14.0304C19.05 13.7904 19.56 13.5104 20 13.1904V18.6804C20 19.3504 19.62 19.8804 19.16 20.2604C18.7 20.6504 18.08 20.9604 17.38 21.2104C15.97 21.7104 14.07 22.0104 12 22.0104C9.93 22.0104 8.03 21.7104 6.62 21.2104C5.92 20.9604 5.3 20.6504 4.84 20.2604C4.38 19.8704 4 19.3404 4 18.6804V13.1904C4.44 13.5104 4.96 13.7904 5.52 14.0304Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconServer1;\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,CACE,GAAGF,EACJ,UAAU,yCAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,svBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,maACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconServer1","props","React","CentralIconBase","IconServer1_default"]}