UNPKG

@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.11 kB
{"version":3,"sources":["../src/IconMoneybag/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMoneybag: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"moneybag, purse, savings\">\n <path\n d=\"M16.2359 8H7.76408C7.26019 8.39509 6.66121 8.91104 6.06128 9.53556C4.5621 11.0962 2.99998 13.3955 3 16.2222C3.00001 17.3703 3.28738 18.3298 3.81154 19.115C4.33365 19.897 5.07076 20.4765 5.92589 20.9006C7.62152 21.7414 9.84015 22 12 22C14.1599 22 16.3785 21.7414 18.0741 20.9006C18.9293 20.4765 19.6664 19.897 20.1885 19.115C20.7126 18.3298 21 17.3703 21 16.2222C21 13.3955 19.4379 11.0962 17.9387 9.53556C17.3388 8.91104 16.7398 8.39509 16.2359 8Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.60245 7L7.13341 3.36421C7.15303 3.35122 7.17253 3.33827 7.19197 3.32537C7.39582 3.19007 7.59151 3.06019 7.81043 2.94671C8.01878 2.83872 8.32111 2.69766 8.70902 2.55752C9.48492 2.27722 10.6051 2 12 2C13.3949 2 14.5151 2.27722 15.291 2.55752C15.6789 2.69766 15.9812 2.83872 16.1896 2.94671C16.4085 3.06019 16.6042 3.19007 16.808 3.32537C16.8275 3.33827 16.847 3.35122 16.8666 3.36421L15.3975 7H8.60245Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMoneybag;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,EAAE,kcACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMoneybag","props","React","CentralIconBase","IconMoneybag_default"]}