@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.23 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconAt/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAt: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"at, handle, @\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C13.7388 21 15.361 20.5074 16.7365 19.6544L17.1614 19.3908L17.6884 20.2407L17.2635 20.5042C15.7344 21.4526 13.9304 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 13.0873 21.7317 14.2339 21.1046 15.0963C20.4585 15.9845 19.449 16.5404 18.0876 16.4167C16.6878 16.2894 15.5348 15.4403 14.9514 14.2771C14.1198 15.8165 12.5373 16.7984 10.816 16.5564C8.51654 16.2333 7.05736 13.8794 7.40253 11.4233C7.74771 8.96728 9.79919 7.10676 12.0986 7.42992C13.3474 7.60543 14.3484 8.37995 14.9471 9.4445L15.1948 7.73888L16.1845 7.88261L15.5688 12.1213C15.5688 12.1214 15.5689 12.1212 15.5688 12.1213C15.3342 13.765 16.5245 15.2704 18.1781 15.4208C19.1734 15.5112 19.8475 15.1244 20.2958 14.508C20.763 13.8657 21 12.9459 21 12C21 7.02944 16.9706 3 12 3ZM11.9594 8.42019C10.327 8.19077 8.67915 9.52502 8.3928 11.5625C8.10645 13.6 9.3227 15.3368 10.9551 15.5662C12.5876 15.7956 14.2354 14.4614 14.5218 12.4239C14.8081 10.3864 13.5919 8.64961 11.9594 8.42019Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAt;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ihCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAt","props","React","CentralIconBase","IconAt_default"]}