@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.03 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconMapPin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMapPin: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"map-pin, location\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.2888 21.9081L12.2911 21.9065L12.2961 21.903L12.314 21.8901C12.3294 21.879 12.3517 21.8628 12.3804 21.8417C12.4379 21.7994 12.5212 21.7374 12.6265 21.6566C12.8371 21.4951 13.1364 21.2586 13.4947 20.9557C14.2106 20.3505 15.1661 19.4772 16.123 18.4049C18.0199 16.2794 20 13.2859 20 10C20 5.46916 16.4136 2 12 2C7.58644 2 4 5.46916 4 10C4 13.2859 5.98009 16.2794 7.87695 18.4049C8.83393 19.4772 9.78944 20.3505 10.5053 20.9557C10.8636 21.2586 11.1629 21.4951 11.3735 21.6566C11.4788 21.7374 11.5621 21.7994 11.6196 21.8417C11.6483 21.8628 11.6706 21.879 11.686 21.8901L11.7039 21.903L11.7089 21.9065L11.7108 21.9079L12 22.1126L12.2888 21.9081ZM9.2478 10C9.2478 8.48122 10.479 7.25 11.9978 7.25C13.5166 7.25 14.7478 8.48122 14.7478 10C14.7478 11.5188 13.5166 12.75 11.9978 12.75C10.479 12.75 9.2478 11.5188 9.2478 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapPin;\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,qBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,mzBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMapPin","props","React","CentralIconBase","IconMapPin_default"]}