UNPKG

@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.44 kB
{"version":3,"sources":["../src/IconHomeEnergy2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHomeEnergy2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"home-energy-2, electric-current, power\"\n >\n <path\n d=\"M11.0686 3.6668L10.4865 2.85369L10.4865 2.85369L11.0686 3.6668ZM5.00001 8.01142L4.4179 7.19831H4.4179L5.00001 8.01142ZM12.9314 3.6668L13.5135 2.85369V2.85369L12.9314 3.6668ZM19 8.01142L19.5821 7.19831L19 8.01142ZM20.9179 10.6143C21.367 10.9358 21.9916 10.8324 22.3131 10.3833C22.6346 9.93427 22.5312 9.3096 22.0821 8.98811L20.9179 10.6143ZM1.91788 8.98811C1.46882 9.3096 1.3654 9.93427 1.68689 10.3833C2.00839 10.8324 2.63305 10.9358 3.08212 10.6143L1.91788 8.98811ZM19 17L20 17V17H19ZM16 19C15.4477 19 15 19.4477 15 20C15 20.5523 15.4477 21 16 21L16 19ZM11.754 3.26058L12 4.22986V4.22986L11.754 3.26058ZM12.246 3.26058L12 4.22986V4.22986L12.246 3.26058ZM8 21C8.55228 21 9 20.5523 9 20C9 19.4477 8.55228 19 8 19V21ZM11 20C11 20.5523 11.4477 21 12 21C12.5523 21 13 20.5523 13 20H11ZM11 10C11 9.44772 10.5523 9.00001 10 9.00001C9.44772 9.00001 9 9.44772 9 10H11ZM15 10C15 9.44772 14.5523 9.00001 14 9.00001C13.4477 9.00001 13 9.44772 13 10H15ZM10.4865 2.85369L4.4179 7.19831L5.58213 8.82452L11.6507 4.47991L10.4865 2.85369ZM12.3493 4.47991L18.4179 8.82452L19.5821 7.19831L13.5135 2.85369L12.3493 4.47991ZM6.00001 17V8.01142H4.00001V17H6.00001ZM18.4179 8.82452L20.9179 10.6143L22.0821 8.98811L19.5821 7.19831L18.4179 8.82452ZM4.4179 7.19831L1.91788 8.98811L3.08212 10.6143L5.58213 8.82452L4.4179 7.19831ZM20 17V8.01142H18V17H20ZM18 17C18 18.1045 17.1046 19 16 19L16 21C18.2091 21 20 19.2091 20 17L18 17ZM11.6507 4.47991C11.8292 4.35212 11.9228 4.28581 11.9935 4.24222C12.0535 4.20516 12.0441 4.21868 12 4.22986L11.5081 2.29131C11.0982 2.39531 10.7527 2.66312 10.4865 2.85369L11.6507 4.47991ZM13.5135 2.85369C13.2473 2.66312 12.9018 2.39531 12.492 2.29131L12 4.22986C11.9559 4.21868 11.9465 4.20516 12.0066 4.24222C12.0772 4.28581 12.1708 4.35212 12.3493 4.47991L13.5135 2.85369ZM12 4.22986L12.492 2.29131C12.1691 2.20937 11.8309 2.20937 11.5081 2.29131L12 4.22986ZM4.00001 17C4.00001 19.2091 5.79087 21 8 21V19C6.89544 19 6.00001 18.1046 6.00001 17H4.00001ZM10 13H14V11H10V13ZM11 16V20H13V16H11ZM8 13C8 15.2091 9.79086 17 12 17V15C10.8954 15 10 14.1046 10 13H8ZM14 13C14 14.1046 13.1046 15 12 15V17C14.2091 17 16 15.2091 16 13H14ZM14 13H16C16 11.8954 15.1046 11 14 11V13ZM10 11C8.89543 11 8 11.8954 8 13H10V11ZM11 12V10H9V12H11ZM15 12V10H13V12H15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHomeEnergy2;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,usEACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHomeEnergy2","props","React","CentralIconBase","IconHomeEnergy2_default"]}