@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 • 3.27 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 d=\"M18.16 14.23C18.89 14 19.52 13.73 20 13.41V18.86C20 19.43 19.67 19.91 19.23 20.27C18.79 20.64 18.18 20.95 17.47 21.2C16.05 21.7 14.11 22 12 22C9.89 22 7.95 21.7 6.53 21.2C5.82 20.95 5.21 20.64 4.77 20.27C4.33 19.9 4 19.43 4 18.86V13.41C4.48 13.73 5.11 14.01 5.84 14.23C7.44 14.73 9.62 15.03 12 15.03C14.38 15.03 16.56 14.73 18.16 14.23ZM20 5.14V11.89C20 12.02 19.91 12.24 19.54 12.51C19.17 12.78 18.61 13.04 17.87 13.27C16.39 13.73 14.32 14.02 12.01 14.02C9.7 14.02 7.63 13.73 6.15 13.27C5.41 13.04 4.84 12.78 4.48 12.51C4.1 12.23 4.02 12.02 4.02 11.89V5.14C4.02 4.57 4.35 4.09 4.79 3.73C5.23 3.36 5.84 3.05 6.55 2.8C7.97 2.3 9.91 2 12.02 2C14.13 2 16.07 2.3 17.49 2.8C18.2 3.05 18.81 3.36 19.25 3.73C19.69 4.1 20.02 4.57 20.02 5.14H20ZM5 5.14C5 5.3 5.09 5.52 5.41 5.78C5.73 6.04 6.22 6.3 6.86 6.53C8.15 6.98 9.97 7.27 12 7.27C14.03 7.27 15.85 6.98 17.14 6.53C17.79 6.3 18.28 6.04 18.59 5.78C18.91 5.51 19 5.29 19 5.14C19 4.99 18.91 4.76 18.59 4.5C18.27 4.24 17.78 3.98 17.14 3.75C15.85 3.3 14.03 3.01 12 3.01C9.97 3.01 8.15 3.3 6.86 3.75C6.21 3.98 5.72 4.24 5.41 4.5C5.09 4.77 5 4.99 5 5.14Z\"\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,EAAE,ukCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconServer1","props","React","CentralIconBase","IconServer1_default"]}