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.12 kB
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEmailNotification: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"email-notification, badge, envelope\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 2C17.7909 2 16 3.79086 16 6C16 8.20914 17.7909 10 20 10C22.2091 10 24 8.20914 24 6C24 3.79086 22.2091 2 20 2ZM17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.9994 11.0385C19.3666 11.0385 18.7611 10.9218 18.2032 10.7089C16.3037 11.5393 14.2057 12 12 12C8.189 12 4.69924 10.6246 2 8.34316V20H22V10.6257C21.3867 10.8913 20.7103 11.0385 19.9994 11.0385Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.9609 6.00001C14.9609 5.28938 15.1081 4.61311 15.3735 4H2V7.00004C4.6016 9.4785 8.12312 11 12 11C13.7798 11 15.4846 10.6793 17.06 10.0927C15.7887 9.17802 14.9609 7.68568 14.9609 6.00001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}