@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.66 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconVoice2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoice2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"voice-2, siri, wave\">\n <path\n d=\"M18.896 19.2416C20.808 17.4201 21.9996 14.8492 21.9996 12C21.9996 11.4088 21.9483 10.8295 21.8499 10.2665C18.0894 10.4577 15.0856 12.2834 12.1406 14.1861C11.9815 14.2889 11.8224 14.392 11.6633 14.4952L11.6624 14.4958C11.0558 14.8891 10.4483 15.283 9.835 15.6602L9.86331 15.6793C12.5212 17.4714 15.4686 19.1108 18.896 19.2416Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.7891 20.1546C14.5288 19.7529 11.7301 18.1441 9.30426 16.5084C9.16355 16.4135 9.02447 16.3188 8.88691 16.2245C7.36263 17.0976 5.7884 17.8161 4.09247 18.1226C5.92175 20.4816 8.78337 22 11.9996 22C14.1573 22 16.1553 21.3167 17.7891 20.1546Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.46208 17.2095C2.58235 15.7709 2.05604 14.0926 2.00391 12.2954C2.89885 12.4243 3.88024 12.8807 4.99125 13.5628C5.80572 14.0629 6.64182 14.6518 7.53457 15.2806L7.53578 15.2814C7.68002 15.383 7.82573 15.4856 7.97307 15.5891C6.50264 16.3977 5.03366 17.0069 3.46208 17.2095Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2.02446 11.2897C3.17647 11.4262 4.34219 11.9909 5.51447 12.7106C6.34944 13.2233 7.23646 13.8476 8.15394 14.4933C8.41035 14.6737 8.66913 14.8559 8.92983 15.0377C9.67636 14.59 10.429 14.1027 11.2013 13.6027L11.5979 13.3462C14.4924 11.4762 17.6479 9.53145 21.6246 9.27782C20.4392 5.07794 16.5789 2 11.9996 2C6.71559 2 2.38878 6.09833 2.02446 11.2897Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoice2;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,wUACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oPACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mRACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+VACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVoice2","props","React","CentralIconBase","IconVoice2_default"]}