@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
1 lines • 4.51 kB
Source Map (JSON)
{"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 d=\"M10.6067 4.09503L9.6159 4.23055L9.88693 6.2121L10.8777 6.07658L10.6067 4.09503ZM21.9997 12L22.8879 12.4594L23.1255 12L22.8879 11.5406L21.9997 12ZM19.5178 14.02L18.8945 14.802L20.4584 16.0486L21.0817 15.2667L19.5178 14.02ZM3.70711 2.29289L3 1.58579L1.58579 3L2.29289 3.70711L3.70711 2.29289ZM20.2929 21.7071L21 22.4142L22.4142 21L21.7071 20.2929L20.2929 21.7071ZM2 12.0001L1.11178 11.5407L0.874156 12.0001L1.11178 12.4595L2 12.0001ZM3.99669 8.99671L4.75774 9.64539L3.99669 8.99671ZM13.8198 18.8199L13.6244 17.8391H13.6244L13.8198 18.8199ZM5.20709 8.79289L4.49998 8.08579L3.08577 9.5L3.79287 10.2071L5.20709 8.79289ZM6.85393 7.70942L7.6694 7.13062L6.5118 5.49968L5.69633 6.07848L6.85393 7.70942ZM9.78693 8.66742L8.95435 9.22133L10.0622 10.8865L10.8947 10.3326L9.78693 8.66742ZM13.6941 13.0645L13.1609 13.9105L14.8528 14.977L15.3861 14.131L13.6941 13.0645ZM12.6907 19.1049L13.3978 19.812L14.812 18.3978L14.1049 17.6907L12.6907 19.1049ZM17.5135 18.4376L18.3716 17.9242L17.3446 16.2079L16.4865 16.7214L17.5135 18.4376ZM10.8777 6.07658C14.5688 5.57173 18.5831 7.57117 21.1115 12.4594L22.8879 11.5406C20.0545 6.06257 15.3039 3.45257 10.6067 4.09503L10.8777 6.07658ZM21.0817 15.2667C21.7441 14.4356 22.3502 13.4991 22.8879 12.4594L21.1115 11.5406C20.6302 12.4711 20.0943 13.2968 19.5178 14.02L21.0817 15.2667ZM2.29289 3.70711L20.2929 21.7071L21.7071 20.2929L3.70711 2.29289L2.29289 3.70711ZM2.88822 12.4595C3.4454 11.3822 4.07587 10.4454 4.75774 9.64539L3.23563 8.34802C2.44846 9.27155 1.73437 10.3369 1.11178 11.5407L2.88822 12.4595ZM1.11178 12.4595C4.07307 18.1848 9.12983 20.774 14.0152 19.8006L13.6244 17.8391C9.78894 18.6033 5.52883 16.646 2.88822 11.5407L1.11178 12.4595ZM4.75774 9.64539C5.41467 8.87467 6.11958 8.23064 6.85393 7.70942L5.69633 6.07848C4.82015 6.70037 3.99409 7.45818 3.23563 8.34802L4.75774 9.64539ZM10.8947 10.3326C11.6712 9.816 12.7301 9.90147 13.4144 10.5858L14.8287 9.17156C13.4576 7.8005 11.341 7.63352 9.78693 8.66742L10.8947 10.3326ZM13.4144 10.5858C14.0867 11.258 14.1812 12.2919 13.6941 13.0645L15.3861 14.131C16.3603 12.5854 16.1758 10.5187 14.8287 9.17156L13.4144 10.5858ZM3.79287 10.2071L12.6907 19.1049L14.1049 17.6907L5.20709 8.79289L3.79287 10.2071ZM14.0152 19.8006C15.2214 19.5603 16.3998 19.104 17.5135 18.4376L16.4865 16.7214C15.5622 17.2745 14.5981 17.6451 13.6244 17.8391L14.0152 19.8006Z\"\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,EAAE,sxEACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEyeSlash2","props","React","CentralIconBase","IconEyeSlash2_default"]}