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.06 kB
{"version":3,"sources":["../src/IconThinkingBubble/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconThinkingBubble: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"thinking-bubble\">\n <circle cx=\"5\" cy=\"19\" r=\"2\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <path\n d=\"M15.4466 4.26348C15.7665 4.7134 16.3132 5.02054 16.8649 5.00224C16.9098 5.00075 16.9548 5 17 5C19.2091 5 21 6.79086 21 9C21 10.4878 20.1877 11.786 18.9823 12.475C18.7713 12.5957 18.5957 12.7713 18.475 12.9823C17.786 14.1877 16.4878 15 15 15C14.5703 15 14.1564 14.9322 13.7685 14.8068C13.1797 14.6165 12.4707 14.8104 12.0118 15.2255C11.4796 15.7069 10.774 16 10 16C8.34315 16 7 14.6569 7 13C7 12.6925 6.86006 12.394 6.6134 12.2103C5.63422 11.4812 5 10.3147 5 9C5 6.79086 6.79086 5 9 5C9.0452 5 9.09023 5.00075 9.13506 5.00224C9.68683 5.02054 10.2335 4.7134 10.5534 4.26348C11.0971 3.49882 11.9903 3 13 3C14.0097 3 14.9029 3.49882 15.4466 4.26348Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconThinkingBubble;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,UAAO,GAAG,IAAI,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACnEA,EAAA,cAAC,QACC,EAAE,woBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconThinkingBubble","props","React","CentralIconBase","IconThinkingBubble_default"]}