@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.43 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconLottielab/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLottielab: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"lottielab\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9.04569 3.81737C9.71439 2.49787 10.8787 1.15841 12.6342 1.43469C13.3133 1.54156 13.9293 1.81095 14.4081 2.28748C14.8856 2.7628 15.1473 3.36528 15.2573 4.0013C15.4686 5.22306 15.1477 6.71423 14.5472 8.281C13.6863 10.527 12.1261 13.2408 10.0296 16.163C10.2468 17.2212 10.551 18.0536 10.9087 18.5846C12.974 21.6499 16.2055 20.3465 16.6265 18.328C16.7506 17.7333 17.3332 17.3517 17.928 17.4758C18.5227 17.5998 18.9042 18.1825 18.7802 18.7772C17.908 22.9587 12.0874 24.2713 9.08419 19.8138C8.80421 19.3983 8.5675 18.9121 8.369 18.3771C7.9744 18.8819 7.56586 19.3906 7.14414 19.9022C6.75773 20.371 6.06445 20.4378 5.59567 20.0514C5.12689 19.665 5.06013 18.9717 5.44654 18.5029C6.25565 17.5213 7.00904 16.5575 7.70276 15.6203C7.67214 15.4099 7.64488 15.1979 7.62077 14.985C7.40733 13.0995 7.42565 10.9925 7.65818 9.03412C7.88881 7.09182 8.34017 5.20951 9.04569 3.81737ZM9.67779 12.7792C10.9614 10.7972 11.9153 9.00069 12.4929 7.49362C13.0507 6.03845 13.1979 5.00346 13.0895 4.37612C13.0396 4.08759 12.9445 3.93479 12.8561 3.84675C12.7688 3.75993 12.6097 3.6579 12.2922 3.60794C12.0545 3.57054 11.5858 3.67192 11.0081 4.81188C10.4672 5.87921 10.0588 7.475 9.84283 9.29352C9.70758 10.4326 9.6518 11.6253 9.67779 12.7792Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLottielab;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,aACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+rCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLottielab","props","React","CentralIconBase","IconLottielab_default"]}