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.6 kB
{"version":3,"sources":["../src/IconPayment/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPayment: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"payment, flow, connection\">\n <path\n d=\"M12.0001 2C10.3405 2 8.97152 3.24385 8.77444 4.85012C6.36965 5.80163 4.48743 7.78664 3.67499 10.2585L3.51886 10.7335L4.46886 11.0457L4.62499 10.5707C5.30745 8.49436 6.84395 6.80423 8.81854 5.91673C9.1261 7.39184 10.4337 8.5 12.0001 8.5C13.795 8.5 15.2501 7.04493 15.2501 5.25C15.2501 3.45507 13.795 2 12.0001 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.5978 7.24488L18.2693 6.86792L17.5154 7.52488L17.8439 7.90184C19.0314 9.26459 19.75 11.045 19.75 12.9944C19.75 13.3658 19.7239 13.7307 19.6736 14.0877C18.3119 13.7635 16.8435 14.351 16.1078 15.6252C15.2104 17.1795 15.743 19.1668 17.2972 20.0642C18.8514 20.9615 20.8388 20.429 21.7361 18.8748C22.6184 17.3466 22.1184 15.3997 20.6241 14.4819C20.7069 13.9981 20.75 13.5011 20.75 12.9944C20.75 10.7944 19.9379 8.78275 18.5978 7.24488Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.88458 15.6252C8.58943 16.8461 8.41207 18.3341 7.5503 19.3513C8.80884 20.2329 10.3407 20.75 11.9944 20.75C12.4921 20.75 12.9783 20.7032 13.4491 20.6139L13.9403 20.5207L14.1267 21.5032L13.6355 21.5964C13.1035 21.6973 12.5549 21.75 11.9944 21.75C10.0364 21.75 8.22743 21.1067 6.76894 20.0203C6.74461 20.0352 6.72002 20.0498 6.69517 20.0642C5.14094 20.9615 3.15355 20.429 2.25621 18.8748C1.35888 17.3205 1.89139 15.3332 3.44563 14.4358C4.99986 13.5385 6.98725 14.071 7.88458 15.6252Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPayment;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,0TACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,obACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qeACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPayment","props","React","CentralIconBase","IconPayment_default"]}