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.45 kB
{"version":3,"sources":["../src/IconChainLink4/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChainLink4: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chain-link-4\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.8611 4.84145C15.6497 3.05285 18.5496 3.05285 20.3382 4.84145L20.6882 5.19146C22.4768 6.98006 22.4768 9.87995 20.6882 11.6685L17.2782 15.0786C15.4896 16.8672 12.5897 16.8672 10.8011 15.0786L10.4511 14.7285C9.70309 13.9805 9.26744 13.0368 9.14535 12.0621L9.0832 11.566L10.0754 11.4417L10.1376 11.9378C10.233 12.6998 10.5729 13.4361 11.1582 14.0214L11.5082 14.3714C12.9063 15.7695 15.173 15.7695 16.5711 14.3714L19.9811 10.9614C21.3792 9.56337 21.3792 7.29664 19.9811 5.89856L19.6311 5.54856C18.233 4.1505 15.9663 4.15048 14.5683 5.54851C14.5683 5.54852 14.5683 5.5485 14.5683 5.54851L14.0398 6.07711L13.3326 5.37009L13.8611 4.84145ZM6.72118 8.92145C8.50978 7.13285 11.4097 7.13285 13.1983 8.92145L13.5483 9.27145C14.2963 10.0195 14.7319 10.9632 14.854 11.9378L14.9162 12.434L13.924 12.5583L13.8618 12.0621C13.7664 11.3002 13.4265 10.5639 12.8412 9.97856L12.4912 9.62855C11.0931 8.23048 8.82636 8.23048 7.42829 9.62855L4.01828 13.0386C2.62021 14.4366 2.62021 16.7034 4.01828 18.1014L4.36829 18.4514C5.76637 19.8495 8.0331 19.8495 9.43117 18.4514L9.9597 17.9229L10.6668 18.63L10.1383 19.1585C8.34969 20.9471 5.44978 20.9471 3.66118 19.1585L3.31118 18.8085C1.52258 17.0199 1.52258 14.1201 3.31117 12.3315L6.72118 8.92145Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChainLink4;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,usCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconChainLink4","props","React","CentralIconBase","IconChainLink4_default"]}