UNPKG

@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.94 kB
{"version":3,"sources":["../src/IconThinkingBubble1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconThinkingBubble1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"thinking-bubble-1, thoughts\">\n <path\n d=\"M10.5066 4.90137C10.0458 4.74311 9.55164 4.65723 9.0375 4.65723C6.53151 4.65723 4.5 6.69753 4.5 9.21437C4.5 10.8145 5.32119 12.2221 6.56341 13.0351C6.61232 15.5094 8.62469 17.5 11.1 17.5C12.4358 17.5 13.6368 16.9203 14.4672 15.9976C14.9642 16.166 15.4966 16.2573 16.0501 16.2573C18.784 16.2573 21.0001 14.0315 21.0001 11.2858C21.0001 9.80565 20.356 8.47654 19.334 7.56581C19.1285 5.00988 16.998 3 14.4002 3C12.8201 3 11.4128 3.74359 10.5066 4.90137Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M6 20C6 21.1046 5.10457 22 4 22C2.89543 22 2 21.1046 2 20C2 18.8954 2.89543 18 4 18C5.10457 18 6 18.8954 6 20Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconThinkingBubble1;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,ocACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,iHACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconThinkingBubble1","props","React","CentralIconBase","IconThinkingBubble1_default"]}