@central-icons-react/square-outlined-radius-0-stroke-1.5
Version:
A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.04 kB
Source Map (JSON)
{"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=\"M13 3.5582V5.5L9 2.75L13 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.23878 3.12011 6.73775 4.92893 4.92893L5.98959 5.98959C4.45057 7.52861 3.5 9.65258 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.64389 17.2232 4.05313 13 3.5582Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.35938 13.7788C9.40234 14.9229 10.3262 15.8896 11.9912 15.8896C13.6187 15.8896 14.811 14.8691 14.811 13.2739C14.811 11.7808 13.6831 10.8462 12.3994 10.8462C11.5454 10.8462 10.9922 11.2329 10.8257 11.4746H10.7773L10.96 9.58398H14.2739V8.41309H9.7998L9.45068 12.7261H10.7236C10.8901 12.3662 11.3037 11.9473 12.0342 11.9473C12.7969 11.9473 13.3931 12.4951 13.3931 13.3384C13.3931 14.23 12.7002 14.7456 12.0288 14.7456C11.3091 14.7456 10.7881 14.375 10.6968 13.7788H9.35938Z\"\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,mUACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2dACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind5s","props","React","CentralIconBase","IconRewind5s_default"]}