@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
1 lines • 2.83 kB
Source Map (JSON)
{"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.8805 5.15879C16.2357 5.05542 16.6114 5 17 5C19.2091 5 21 6.79086 21 9C21 10.6222 20.0343 12.0189 18.6465 12.6465C18.0189 14.0343 16.6222 15 15 15C14.1496 15 13.3611 14.7346 12.713 14.2821C12.2322 15.2976 11.1981 16 10 16C8.34315 16 7 14.6569 7 13C7 12.826 7.01482 12.6554 7.04326 12.4895C5.82384 11.8043 5 10.4984 5 9C5 6.79086 6.79086 5 9 5C9.38862 5 9.76429 5.05542 10.1195 5.15878C10.4832 3.9114 11.6352 3 13 3C14.3648 3 15.5168 3.9114 15.8805 5.15879Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,8cACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconThinkingBubble","props","React","CentralIconBase","IconThinkingBubble_default"]}