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.43 kB
{"version":3,"sources":["../src/IconRetouch/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRetouch: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"retouch, face, hair\">\n <path\n d=\"M17.9847 1.4329C17.9568 1.18651 17.7485 1.00025 17.5005 1C17.2525 0.999747 17.0438 1.18557 17.0154 1.43191C16.838 2.96993 15.9699 3.83801 14.4319 4.01541C14.1856 4.04382 13.9997 4.25253 14 4.5005C14.0003 4.74847 14.1865 4.9568 14.4329 4.9847C15.9491 5.15645 16.8774 6.01617 17.0141 7.55536C17.0365 7.80725 17.2477 8.00028 17.5005 8C17.7534 7.99971 17.9642 7.80621 17.986 7.55426C18.1173 6.03683 19.0368 5.11734 20.5543 4.98599C20.8062 4.96418 20.9997 4.75344 21 4.50055C21.0003 4.24766 20.8073 4.03648 20.5554 4.01411C19.0162 3.87738 18.1564 2.94911 17.9847 1.4329Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3 21V12C3 7.31415 6.58102 3.46471 11.1556 3.03906M21 21V12C21 10.961 20.8239 9.96305 20.5 9.03448\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.9231 11H9.07692C7.92987 11 7 11.9299 7 13.0769V15C7 17.7614 9.23858 20 12 20C14.7614 20 17 17.7614 17 15V13.0769C17 11.9299 16.0701 11 14.9231 11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRetouch;\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,uBACpCC,EAAA,cAAC,QACC,EAAE,wjBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,yJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRetouch","props","React","CentralIconBase","IconRetouch_default"]}