@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
1 lines • 3.83 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconRewind30s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewind30s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rewind-30s\">\n <path\n d=\"M13 4.06189V5.99999L9 3L13 0V2.04938C18.0533 2.5511 22 6.81465 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 9.23885 3.12038 6.73748 4.92893 4.92893L6.34315 6.34315C4.89434 7.79195 4 9.79058 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.92038 16.9463 4.55399 13 4.06189Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.85303 12.6343H8.66406C9.41602 12.6343 9.82422 13.0532 9.82422 13.5742C9.82959 14.1221 9.39453 14.5356 8.68555 14.5356C7.99805 14.5356 7.53076 14.1489 7.49316 13.6226H5.87109C5.88721 14.8203 6.7627 15.8838 8.64258 15.8838C10.2163 15.8838 11.6021 15.0513 11.5913 13.687C11.5806 12.5269 10.7588 11.9736 10.0498 11.9253V11.8501C10.603 11.7749 11.3818 11.2539 11.3711 10.2119C11.3604 9.07324 10.2217 8.28906 8.7124 8.28906C6.99902 8.28906 6.02148 9.21289 5.97314 10.5181H7.62207C7.63818 10.0776 7.99268 9.61035 8.64258 9.61035C9.2334 9.61035 9.6416 9.97021 9.64697 10.4429C9.64697 10.9531 9.24414 11.3237 8.62646 11.3237H7.85303V12.6343Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.2896 12.312C12.2896 14.4282 13.3047 15.8838 15.1685 15.8838C17.1235 15.8838 18.085 14.2939 18.085 12.312V11.8447C18.085 9.7124 17.0752 8.28906 15.2061 8.28906C13.353 8.28906 12.2896 9.72852 12.2896 11.8447V12.312ZM14.0674 11.8501C14.0674 10.3892 14.5186 9.70703 15.1899 9.70703C15.856 9.70703 16.3125 10.3999 16.3125 11.8501V12.3066C16.3125 13.7568 15.856 14.4658 15.1899 14.4658C14.5186 14.4658 14.0674 13.7676 14.0674 12.3066V11.8501Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRewind30s;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,cACpCC,EAAA,cAAC,QACC,EAAE,oTACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8nBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind30s","props","React","CentralIconBase","IconRewind30s_default"]}