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 3.38 kB
{"version":3,"sources":["../src/IconSupport/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSupport: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"support\">\n <path\n d=\"M6 10H7C7 9.44772 6.55228 9 6 9V10ZM6 16.5V17.5C6.55228 17.5 7 17.0523 7 16.5H6ZM18.5 10V9C17.9477 9 17.5 9.44772 17.5 10H18.5ZM18.5 16.5H17.5C17.5 17.0523 17.9477 17.5 18.5 17.5V16.5ZM13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19H13ZM20.75 16.5C20.75 15.9477 20.3023 15.5 19.75 15.5C19.1977 15.5 18.75 15.9477 18.75 16.5H20.75ZM4.5 11H6V9H4.5V11ZM5 10V16.5H7V10H5ZM6 15.5H4.5V17.5H6V15.5ZM4 15V11.5H2V15H4ZM4.5 15.5C4.22386 15.5 4 15.2761 4 15H2C2 16.3807 3.11929 17.5 4.5 17.5V15.5ZM4.5 9C3.11929 9 2 10.1193 2 11.5H4C4 11.2239 4.22386 11 4.5 11V9ZM18.5 11H20V9H18.5V11ZM20.5 11.5V15H22.5V11.5H20.5ZM20 15.5H18.5V17.5H20V15.5ZM19.5 16.5V10H17.5V16.5H19.5ZM20.5 15C20.5 15.2761 20.2761 15.5 20 15.5V17.5C21.3807 17.5 22.5 16.3807 22.5 15H20.5ZM20 11C20.2761 11 20.5 11.2239 20.5 11.5H22.5C22.5 10.1193 21.3807 9 20 9V11ZM6 9.75C6 6.64046 8.72972 4 12.25 4V2C7.76215 2 4 5.40369 4 9.75H6ZM12.25 4C15.7703 4 18.5 6.64046 18.5 9.75H20.5C20.5 5.40369 16.7378 2 12.25 2V4ZM4 9.75V10H6V9.75H4ZM18.5 9.75V10H20.5V9.75H18.5ZM15.25 20H13.5V22H15.25V20ZM13 19.5V19H11V19.5H13ZM18.75 16.5C18.75 18.433 17.183 20 15.25 20V22C18.2876 22 20.75 19.5376 20.75 16.5H18.75ZM13.5 20C13.2239 20 13 19.7761 13 19.5H11C11 20.8807 12.1193 22 13.5 22V20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSupport;\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,WACpCC,EAAA,cAAC,QACC,EAAE,kuCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSupport","props","React","CentralIconBase","IconSupport_default"]}