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 2.9 kB
{"version":3,"sources":["../src/IconCurrencyPounds/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCurrencyPounds: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"currency-pounds, money\">\n <path\n d=\"M8.13574 8.39062C8.13574 5.40402 10.5866 3 13.5889 3C15.3578 3.00004 16.9322 3.83386 17.9287 5.12695L18.1211 5.3916L18.542 6.01172L17.3008 6.85449L16.8789 6.2334L16.7412 6.04199C16.0197 5.10564 14.8774 4.50004 13.5889 4.5C11.396 4.5 9.63574 6.25134 9.63574 8.39062C9.63574 9.08457 9.74306 10.1322 9.83789 11.4219C9.8398 11.4478 9.84088 11.4739 9.84277 11.5H15V13H9.92773C9.96068 13.813 9.96995 14.6527 9.91797 15.4639C9.83224 16.8014 9.58485 18.1538 8.96777 19.1914C8.90414 19.2984 8.835 19.4006 8.76367 19.5H19V21H5.75V19.5C6.70128 19.5 7.27865 19.0975 7.67871 18.4248C8.11248 17.6954 8.34 16.6302 8.4209 15.3682C8.47005 14.6014 8.46046 13.7958 8.42676 13H5V11.5H8.33887C8.25033 10.3034 8.13574 9.15119 8.13574 8.39062Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCurrencyPounds;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,mtBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCurrencyPounds","props","React","CentralIconBase","IconCurrencyPounds_default"]}