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.29 kB
{"version":3,"sources":["../src/IconFastForward10s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFastForward10s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fast-forward-10s\">\n <path\n d=\"M10.002 15.75V8.41846H9.13184C8.5625 8.72461 7.88037 9.12744 7.32715 9.5249V10.481C7.84277 10.1265 8.65918 9.62695 9.05664 9.41211H9.07275V15.75H10.002Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.5811 12.377C11.5811 14.5308 12.4941 15.9058 14.1646 15.9058C15.8457 15.9058 16.7427 14.52 16.7427 12.377V11.8076C16.7427 9.64307 15.8403 8.2627 14.1699 8.2627C12.4995 8.2627 11.5811 9.64844 11.5811 11.8076V12.377ZM12.5103 11.813C12.5103 10.0781 13.1387 9.08447 14.1646 9.08447C15.1851 9.08447 15.8135 10.0781 15.8135 11.813V12.3662C15.8135 14.1011 15.1851 15.084 14.1646 15.084C13.1387 15.084 12.5103 14.1011 12.5103 12.3662V11.813Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11 3.05493V5.5L15 2.75L11 0V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.23871 20.8802 6.73803 19.0711 4.92893L18.364 5.63604C19.9932 7.26527 21 9.51458 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.36745 6.50005 3.55237 11 3.05493Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFastForward10s;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,2JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,ubACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mTACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFastForward10s","props","React","CentralIconBase","IconFastForward10s_default"]}