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 4.33 kB
{"version":3,"sources":["../src/IconStamps/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconStamps: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"stamps, collection\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 3H6.89461L7.66345 3.76885C8.29805 4.40345 9.32695 4.40345 9.96155 3.76884L10.7304 3H13.2696L14.0385 3.76885C14.6731 4.40345 15.7019 4.40345 16.3365 3.76884L17.1054 3H21V6.89461L20.2312 7.66345C19.5966 8.29805 19.5966 9.32695 20.2312 9.96155L21 10.7304V13.2696L20.2312 14.0385C19.8702 14.3995 19.7143 14.8875 19.7643 15.36C19.8021 15.7169 19.9574 16.0628 20.2312 16.3365L21 17.1054V21H17.1054L16.3365 20.2312C15.7019 19.5966 14.6731 19.5966 14.0385 20.2312L13.2696 21H10.7304L9.96155 20.2312C9.32695 19.5966 8.29805 19.5966 7.66345 20.2312L6.89461 21H3V17.1054L3.76884 16.3365C4.07841 16.027 4.23681 15.6247 4.2445 15.2185C4.25259 14.7915 4.09407 14.3637 3.76884 14.0385L3 13.2696V10.7304L3.76885 9.96155C4.40345 9.32695 4.40345 8.29805 3.76884 7.66345L3 6.89461V3ZM17.1821 16.2186C17.1253 16.219 17.0688 16.2187 17.0126 16.2179C16.3839 16.2086 15.7946 16.1237 15.2344 15.9919C14.7581 15.8798 14.306 15.7344 13.8728 15.5756C13.4293 15.413 12.9997 15.234 12.5864 15.0618L12.5131 15.0312C12.0735 14.8481 11.6523 14.6741 11.2296 14.5255C10.3878 14.2293 9.56783 14.044 8.67927 14.1055C8.39613 14.1251 8.1036 14.17 7.79902 14.2457C7.72168 14.265 7.64344 14.2862 7.56425 14.3096C7.56422 14.3096 7.56427 14.3097 7.56425 14.3096C6.86694 14.5157 6.09661 14.8872 5.22646 15.4979C5.15952 16.0624 4.90925 16.6104 4.47595 17.0437L4 17.5196V20H6.48039L6.95634 19.524C7.98147 18.4989 9.64353 18.4989 10.6687 19.524L11.1446 20H12.8554L13.3313 19.524C14.3565 18.4989 16.0185 18.4989 17.0437 19.524L17.5196 20H20V17.5196L19.524 17.0437C19.2271 16.7467 19.016 16.3957 18.891 16.0223C18.2882 16.1552 17.7207 16.2149 17.1821 16.2186ZM7.19215 13.3775C7.06701 12.9399 7 12.4778 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12C17 13.1761 16.5939 14.2574 15.9143 15.1112C15.7618 15.0845 15.6116 15.0533 15.4635 15.0185C15.0371 14.9181 14.6246 14.7862 14.217 14.6367C13.7946 14.4819 13.3835 14.3106 12.9658 14.1365L12.8977 14.1081C12.4602 13.9259 12.0144 13.7415 11.5615 13.5821C10.6522 13.2623 9.68711 13.0333 8.61019 13.1079C8.26887 13.1315 7.91871 13.1855 7.55768 13.2753C7.43687 13.3053 7.31505 13.3393 7.19215 13.3775Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStamps;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+jEACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconStamps","props","React","CentralIconBase","IconStamps_default"]}