@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.19 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconBitcoin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBitcoin: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bitcoin\">\n <path\n d=\"M13.2485 15.9948C14.2137 15.9948 14.9961 15.2123 14.9961 14.2471C14.9961 13.2819 14.2137 12.4995 13.2485 12.4995H10.0029V15.9948H13.2485Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.2485 8.00556C14.2137 8.00556 14.9961 8.788 14.9961 9.75319C14.9961 10.7184 14.2137 11.5008 13.2485 11.5008H10.0029V8.00556H13.2485Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2 12.0002C2 6.47734 6.47715 2.00018 12 2.00018C17.5228 2.00018 22 6.47734 22 12.0002C22 17.523 17.5228 22.0002 12 22.0002C6.47715 22.0002 2 17.523 2 12.0002ZM7.50623 7.00691V8.00556H9.00421V15.9948H7.50623V16.9934H11.5008V18.4914H12.4995V16.9934H13.2485C14.7652 16.9934 15.9948 15.7639 15.9948 14.2471C15.9948 13.3183 15.5337 12.4972 14.8279 12.0002C15.5337 11.5031 15.9948 10.682 15.9948 9.75319C15.9948 8.23646 14.7652 7.00691 13.2485 7.00691H12.4995V5.50893H11.5008V7.00691H7.50623Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBitcoin;\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,WACpCC,EAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yeACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBitcoin","props","React","CentralIconBase","IconBitcoin_default"]}