UNPKG

@central-icons-react/round-outlined-radius-3-stroke-2

Version:

A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.

1 lines 3.71 kB
{"version":3,"sources":["../src/IconRewind5s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewind5s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rewind-5s\">\n <path\n d=\"M12.5393 0.0809335C12.8204 0.222001 13 0.524565 13 0.85715V2.04938C18.0533 2.5511 22 6.81465 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 9.6195 2.83304 7.43086 4.22263 5.71362C4.57004 5.28429 5.19972 5.21789 5.62905 5.5653C6.05837 5.91271 6.12478 6.54238 5.77737 6.97171C4.66536 8.34592 4 10.0939 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.92038 16.9463 4.55399 13 4.06189V5.14285C13 5.47544 12.8204 5.778 12.5393 5.91907C12.2582 6.06013 11.9263 6.01424 11.6879 5.80132L9.28785 3.65847C9.10546 3.49562 9 3.25438 9 3C9 2.74562 9.10546 2.50438 9.28785 2.34153L11.6879 0.198677C11.9263 -0.0142387 12.2582 -0.0601344 12.5393 0.0809335Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.33594 14.2461C9.33594 15.1108 10.4585 15.9111 11.9355 15.9111C13.708 15.9111 14.8574 14.8584 14.8574 13.2524C14.8574 11.813 13.9014 10.8516 12.4834 10.8516C11.8496 10.8516 11.2695 11.0718 11.0117 11.4102H10.9204L11.0386 9.82031H13.7349C14.2559 9.82031 14.5405 9.57324 14.5405 9.12744C14.5405 8.67627 14.2505 8.41309 13.7349 8.41309H10.6841C10.0127 8.41309 9.6582 8.70312 9.62061 9.27783L9.44336 11.8882C9.40576 12.4307 9.79785 12.8013 10.3242 12.8013C10.5391 12.8013 10.7271 12.7368 10.9956 12.5273C11.3179 12.2964 11.6724 12.1675 12.0054 12.1675C12.6821 12.1675 13.1655 12.6294 13.1655 13.3008C13.1655 14.0098 12.6606 14.4878 11.9517 14.4878C11.4629 14.4878 11.0762 14.2729 10.7056 13.8164C10.5015 13.5747 10.3027 13.478 10.0449 13.478C9.60986 13.478 9.33594 13.8271 9.33594 14.2461Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRewind5s;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,aACpCC,EAAA,cAAC,QACC,EAAE,kqBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sxBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind5s","props","React","CentralIconBase","IconRewind5s_default"]}