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 4 kB
{"version":3,"sources":["../src/IconWorld/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWorld: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"world, globus, internet, web, globe\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4.59772 7.8189C3.8989 9.05344 3.5 10.4801 3.5 12C3.5 14.0772 4.24511 15.9804 5.48263 17.4569L8.77446 14.165C7.18407 12.4893 5.93655 10.7647 5.18607 9.26371C4.93786 8.76728 4.7369 8.28128 4.59772 7.8189ZM7.81933 4.59748C8.28167 4.73666 8.76762 4.9376 9.264 5.18579C10.765 5.93627 12.4895 7.18378 14.1653 8.77417L17.4569 5.48263C15.9804 4.24511 14.0772 3.5 12 3.5C10.4803 3.5 9.05377 3.89881 7.81933 4.59748ZM18.521 4.41847C16.7702 2.91117 14.4915 2 12 2C6.47715 2 2 6.47715 2 12C2 14.4915 2.91117 16.7702 4.41847 18.521L3.16131 19.7782L4.22197 20.8388L5.47914 19.5817C7.22995 21.0889 9.50857 22 12 22C17.5228 22 22 17.5228 22 12C22 9.50857 21.0889 7.22995 19.5817 5.47914L20.839 4.22184L19.7783 3.16118L18.521 4.41847ZM18.5175 6.54331L15.226 9.83483C16.8164 11.5106 18.064 13.2353 18.8145 14.7363C19.0626 15.2325 19.2635 15.7183 19.4026 16.1805C20.1012 14.9461 20.5 13.5196 20.5 12C20.5 9.92287 19.7549 8.01975 18.5175 6.54331ZM16.1809 19.4024C15.7186 19.2632 15.2328 19.0623 14.7366 18.8142C13.2356 18.0637 11.5109 16.8161 9.83511 15.2257L6.54331 18.5175C8.01975 19.7549 9.92287 20.5 12 20.5C13.5198 20.5 14.9464 20.1011 16.1809 19.4024ZM10.8962 14.1647C12.4812 15.6646 14.0757 16.8067 15.4074 17.4726C16.1523 17.845 16.7763 18.0488 17.2471 18.1046C17.7286 18.1617 17.9182 18.0535 17.986 17.9857C18.0537 17.918 18.162 17.7283 18.1049 17.2468C18.0491 16.776 17.8453 16.152 17.4728 15.4071C16.807 14.0754 15.6649 12.4809 14.165 10.8959L10.8962 14.1647ZM13.1043 9.83521C11.5193 8.33534 9.92486 7.19327 8.59318 6.52743C7.84824 6.15496 7.2243 5.95115 6.75348 5.89535C6.27197 5.83829 6.08232 5.94653 6.01457 6.01428C5.94682 6.08203 5.83858 6.27168 5.89564 6.75319C5.95144 7.22401 6.15525 7.84795 6.52772 8.59289C7.19356 9.92458 8.33563 11.519 9.83549 13.104L13.1043 9.83521Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWorld;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4uDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconWorld","props","React","CentralIconBase","IconWorld_default"]}