UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 3.19 kB
{"version":3,"sources":["../src/IconEyeSlash2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEyeSlash2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"eye-slash-2, accessibility eye, a11y\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2.21815 3.28033L5.38643 6.44861C4.67229 7.02516 3.99499 7.70124 3.3652 8.47484C2.6123 9.39967 1.92725 10.4639 1.3275 11.6648L1.16016 11.9999L1.3275 12.335C4.28576 18.2587 9.35072 20.8614 14.1861 19.7507C15.2823 19.499 16.3529 19.0576 17.3692 18.4313L20.7181 21.7803L21.7788 20.7197L18.6109 17.5518C20.1771 16.2867 21.5696 14.5405 22.671 12.3351L22.8383 12L22.671 11.6649C20.1618 6.64058 16.1417 4.00003 12 4C10.1432 3.99999 8.31083 4.53068 6.6281 5.56896L3.27881 2.21967L2.21815 3.28033ZM10.0213 8.96216L15.0378 13.9787C15.4092 13.4097 15.625 12.7301 15.625 12C15.625 9.99797 14.002 8.375 12 8.375C11.2699 8.375 10.5902 8.59083 10.0213 8.96216ZM4.96802 8.90887C5.44326 8.38223 5.94059 7.91834 6.45393 7.51611L16.2743 17.3365C15.6131 17.7116 14.9338 17.9947 14.2468 18.1876L4.96802 8.90887ZM4.02161 10.0838L12.4257 18.4879C8.91312 18.6683 5.25408 16.5893 2.84119 11.9999C3.20733 11.3038 3.60261 10.6653 4.02161 10.0838Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEyeSlash2;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,wCAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,05BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEyeSlash2","props","React","CentralIconBase","IconEyeSlash2_default"]}