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.15 kB
{"version":3,"sources":["../src/IconOngoing/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconOngoing: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ongoing, moving\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5H12.75V22H12C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2H12.75V3.5H12ZM16.3513 2.96274L17.0005 3.33828C17.9213 3.87092 18.7489 4.54595 19.4535 5.33315L19.9537 5.892L18.836 6.89237L18.3358 6.33352C17.7362 5.66359 17.0321 5.08943 16.2495 4.63669L15.6003 4.26115L16.3513 2.96274ZM12.75 7.43934L17.3107 12L12.75 16.5607L11.6893 15.5L14.4393 12.75H7V11.25H14.4393L11.6893 8.5L12.75 7.43934ZM21.6658 9.3196L21.8109 10.0554C21.935 10.685 22 11.3353 22 12C22 12.6647 21.935 13.315 21.8109 13.9446L21.6658 14.6804L20.1942 14.3902L20.3392 13.6544C20.4446 13.1199 20.5 12.5668 20.5 12C20.5 11.4332 20.4446 10.8801 20.3392 10.3456L20.1942 9.60977L21.6658 9.3196ZM19.9537 18.108L19.4535 18.6669C18.7489 19.4541 17.9213 20.1291 17.0005 20.6617L16.3513 21.0373L15.6003 19.7389L16.2495 19.3633C17.0321 18.9106 17.7362 18.3364 18.3358 17.6665L18.836 17.1076L19.9537 18.108Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOngoing;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,y6BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconOngoing","props","React","CentralIconBase","IconOngoing_default"]}