@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.46 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconMoneyHand/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMoneyHand: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"money-hand, coins, pay\">\n <path\n d=\"M14.5634 14.0231C14.6 13.7193 14.4292 13.4088 14.1078 13.3812C14.102 13.3807 14.0961 13.3803 14.0903 13.3798L9.19669 13.0124C8.65686 12.9719 8.11351 13.0306 7.5996 13.1849L3 14.5662V21.0715H4.83831L4.85056 21.075C4.95989 21.107 5.11685 21.1518 5.31199 21.2046C5.70161 21.31 6.24688 21.4481 6.87145 21.5794C8.09069 21.8358 9.72522 22.0916 11.0994 21.9679C12.5697 21.8356 14.3876 21.1813 15.958 20.5065C17.5608 19.8178 19.0337 19.0503 19.8515 18.6074C20.5815 18.2121 21 17.5058 21 16.763C21 15.2985 19.557 14.9476 18 15.3684L15 16.3158C15 16.3158 14.0757 17.1806 12.5 17.5L10.2681 17.8816L10.1037 16.9569L12.0458 16.5632C13.4015 16.2884 14.4132 15.2676 14.5634 14.0231Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14 3.5C12.067 3.5 10.5 5.067 10.5 7C10.5 8.933 12.067 10.5 14 10.5C14.5241 10.5 15.0226 10.3845 15.4702 10.177C16.6677 9.62208 17.5 8.40875 17.5 7C17.5 6.49257 17.3917 6.00909 17.1965 5.57251C16.6507 4.35205 15.4254 3.5 14 3.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.5 5.5C6.5 3.567 8.067 2 10 2C10.8697 2 11.6649 2.3172 12.2768 2.84175C10.6466 3.51809 9.5 5.12515 9.5 7C9.5 7.71836 9.66833 8.39741 9.96769 8.99985C8.04957 8.98251 6.5 7.42221 6.5 5.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMoneyHand;\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,0BACpCC,EAAA,cAAC,QACC,EAAE,8pBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8LACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMoneyHand","props","React","CentralIconBase","IconMoneyHand_default"]}