@central-icons-react/round-outlined-radius-3-stroke-2
Version:
A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.
1 lines • 4.96 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconMacMini/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMacMini: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"mac-mini\">\n <path\n d=\"M4 8.8C4 7.11984 4 6.27976 4.32698 5.63803C4.6146 5.07354 5.07354 4.6146 5.63803 4.32698C6.27976 4 7.11984 4 8.8 4H15.2C16.8802 4 17.7202 4 18.362 4.32698C18.9265 4.6146 19.3854 5.07354 19.673 5.63803C20 6.27976 20 7.11984 20 8.8V15.2C20 16.8802 20 17.7202 19.673 18.362C19.3854 18.9265 18.9265 19.3854 18.362 19.673C17.7202 20 16.8802 20 15.2 20H8.8C7.11984 20 6.27976 20 5.63803 19.673C5.07354 19.3854 4.6146 18.9265 4.32698 18.362C4 17.7202 4 16.8802 4 15.2V8.8Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M13.1562 9.94922C13.2135 9.94922 13.3112 9.95833 13.4492 9.97656C13.5872 9.99479 13.7383 10.0469 13.9023 10.1328C14.069 10.2161 14.2201 10.3555 14.3555 10.5508C14.3477 10.5586 14.3099 10.5872 14.2422 10.6367C14.1745 10.6836 14.099 10.7539 14.0156 10.8477C13.9323 10.9388 13.8594 11.056 13.7969 11.1992C13.7344 11.3398 13.7031 11.5078 13.7031 11.7031C13.7031 11.9271 13.7422 12.1172 13.8203 12.2734C13.901 12.4297 13.9935 12.556 14.0977 12.6523C14.2044 12.7461 14.2982 12.8151 14.3789 12.8594C14.4622 12.9036 14.5065 12.9271 14.5117 12.9297C14.5091 12.9401 14.4753 13.0326 14.4102 13.207C14.3477 13.3815 14.2435 13.5755 14.0977 13.7891C13.9701 13.974 13.832 14.1445 13.6836 14.3008C13.5378 14.457 13.362 14.5352 13.1562 14.5352C13.0182 14.5352 12.9049 14.5156 12.8164 14.4766C12.7279 14.4349 12.6367 14.3945 12.543 14.3555C12.4492 14.3138 12.3229 14.293 12.1641 14.293C12.0104 14.293 11.8815 14.3138 11.7773 14.3555C11.6758 14.3971 11.5781 14.4388 11.4844 14.4805C11.3932 14.5221 11.2852 14.543 11.1602 14.543C10.9701 14.543 10.8034 14.4674 10.6602 14.3164C10.5169 14.1654 10.3698 13.9844 10.2188 13.7734C10.0443 13.5234 9.89453 13.2188 9.76953 12.8594C9.64714 12.4974 9.58594 12.1328 9.58594 11.7656C9.58594 11.3724 9.66016 11.043 9.80859 10.7773C9.95703 10.5091 10.1471 10.3073 10.3789 10.1719C10.6133 10.0339 10.8555 9.96484 11.1055 9.96484C11.2383 9.96484 11.3633 9.98698 11.4805 10.0312C11.5977 10.0729 11.707 10.1159 11.8086 10.1602C11.9128 10.2044 12.0065 10.2266 12.0898 10.2266C12.1706 10.2266 12.2643 10.2031 12.3711 10.1562C12.4779 10.1094 12.5977 10.0638 12.7305 10.0195C12.8633 9.97266 13.0052 9.94922 13.1562 9.94922ZM12.9414 9.45312C12.8398 9.57552 12.7122 9.67839 12.5586 9.76172C12.4049 9.84245 12.2591 9.88281 12.1211 9.88281C12.0924 9.88281 12.0651 9.88021 12.0391 9.875C12.0365 9.86719 12.0339 9.85286 12.0312 9.83203C12.0286 9.8112 12.0273 9.78906 12.0273 9.76562C12.0273 9.60938 12.0612 9.45833 12.1289 9.3125C12.1966 9.16406 12.2734 9.04167 12.3594 8.94531C12.4688 8.8151 12.6068 8.70703 12.7734 8.62109C12.9401 8.53516 13.099 8.48958 13.25 8.48438C13.2578 8.51823 13.2617 8.55859 13.2617 8.60547C13.2617 8.76172 13.2318 8.91406 13.1719 9.0625C13.112 9.20833 13.0352 9.33854 12.9414 9.45312Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMacMini;\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,YACpCC,EAAA,cAAC,QACC,EAAE,odACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,wqEACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMacMini","props","React","CentralIconBase","IconMacMini_default"]}